diff --git a/services/openclaw_strategist_service.py b/services/openclaw_strategist_service.py index a3e197e..c59d9d5 100644 --- a/services/openclaw_strategist_service.py +++ b/services/openclaw_strategist_service.py @@ -30,9 +30,6 @@ from typing import Any, Dict, List, Optional from database.manager import get_session from sqlalchemy import text -# re-export:SSHJumpExecutor 維護於 auto_heal_service(向後相容) -from services.auto_heal_service import SSHJumpExecutor # noqa: F401 - logger = logging.getLogger(__name__) GEMINI_API_KEY = os.getenv("GEMINI_API_KEY", "") @@ -40,7 +37,6 @@ STRATEGY_MODEL = os.getenv("OPENCLAW_MODEL", "gemini-2.5-flash-preview-05-20") TAIPEI_TZ_OFFSET = 8 # UTC+8 __all__ = [ - "SSHJumpExecutor", "generate_daily_report", "generate_weekly_strategy_report", "generate_monthly_report",