Fix lint errors

This commit is contained in:
2026-02-20 04:59:56 +00:00
parent faa04a0d01
commit 595abd6cd3
19 changed files with 442 additions and 321 deletions

View File

@@ -1,6 +1,8 @@
"""Dependency injection and service lifecycle management."""
from functools import lru_cache
from .config import settings
from .config import Settings, settings
from .services import (
ConversationManagerService,
DLPService,
@@ -68,7 +70,7 @@ def get_conversation_manager() -> ConversationManagerService:
# Lifecycle management functions
def init_services(settings) -> None:
def init_services(settings: Settings) -> None:
"""Initialize services (placeholder for compatibility)."""
# Services are lazy-loaded via lru_cache, no explicit init needed