Skip to content

Commit 08c8f20

Browse files
Lumi-nodeclaude
andcommitted
Fix unused imports (ruff lint)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent bf0a093 commit 08c8f20

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

orc/judges/llm_judge.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from typing import List, Optional
99

1010
from dynabots_core import LLMProvider, LLMMessage, Verdict
11-
from dynabots_core.protocols.judge import Judge, Submission
11+
from dynabots_core.protocols.judge import Submission
1212

1313

1414
class LLMJudge:

orc/judges/metrics_judge.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from typing import Callable, Dict, List, Optional
88

99
from dynabots_core import Verdict
10-
from dynabots_core.protocols.judge import Judge, Submission
10+
from dynabots_core.protocols.judge import Submission
1111

1212

1313
class MetricsJudge:

orc/strategies/cooldown.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44

55
from datetime import datetime, timezone
6-
from typing import Dict, Optional
6+
from typing import Dict
77

88

99
class CooldownStrategy:

0 commit comments

Comments
 (0)