fix(worker): remove unused sys import and organize imports (#1061)

Signed-off-by: aoright <102943475+aoright@users.noreply.github.com>
This commit is contained in:
aoright
2026-08-27 16:08:33 +05:00
committed by GitHub
parent 0775b0114e
commit 65e6dcfef5
+3 -3
View File
@@ -5,11 +5,11 @@ This module provides the worker process for the Semantica framework,
enabling distributed and background task processing.
"""
import time
import signal
import sys
from .utils.logging import get_logger, setup_logging
import time
from .core.orchestrator import Semantica
from .utils.logging import get_logger, setup_logging
# Initialize logging
setup_logging()