fix: mypy error

This commit is contained in:
Yuta Saito 2026-01-09 05:35:15 +09:00
parent 790c80070f
commit cc3b068f22

View file

@ -130,10 +130,7 @@ class FocusLogger(CustomLogger):
async def initialize_focus_export_job(self) -> None:
"""Entry point for scheduler jobs to run export cycle with locking."""
try:
from litellm.proxy.proxy_server import proxy_logging_obj
except ImportError:
proxy_logging_obj = None
from litellm.proxy.proxy_server import proxy_logging_obj
pod_lock_manager = None
if proxy_logging_obj is not None: