SIENTIAPDE-1478

Refactor import statements in worker.py to enhance readability and maintain consistency with the new repository structure.
This commit is contained in:
vitor-aignosi
2026-01-09 12:38:46 -03:00
parent 1829307704
commit ea081ca348

View File

@@ -6,20 +6,19 @@ with workflow.unsafe.imports_passed_through():
import os
import sys
from scouter.worker.prepare_worker import prepare_worker
from prometheus_client import start_http_server
from sientia_do.notifications.handlers import CoreNotificationHandler as NotificationHandler
from sientia_do.observability.logger import get_logger
from sientia_do.utils.connectors_config import (
build_api_config,
build_mongodb_config,
build_postgres_config,
build_redis_config,
)
from sientia_do.notifications.handlers import CoreNotificationHandler as NotificationHandler
from sientia_do.observability.logger import get_logger
from scouter import metrics
from scouter.activities.activities import Activities
from scouter.worker.prepare_worker import prepare_worker
from scouter.workflow.pi_web_api_scouter import PIWebAPIScouter
from scouter.workflow.scouter import Scouter
from scouter.workflow.sub_workflows.core_scouter import CoreScouter