Skip to content

Commit 138dc7a

Browse files
nhortonclaude
andcommitted
Fix ruff linting errors (unused imports, import sorting)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 7f8a26f commit 138dc7a

4 files changed

Lines changed: 1 addition & 9 deletions

File tree

tests/shell_script_tests/test_hooks.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@
5252

5353
from .conftest import run_shell_script
5454

55-
5655
# =============================================================================
5756
# Helper Functions
5857
# =============================================================================

tests/unit/test_command_executor.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
from pathlib import Path
44

5-
import pytest
6-
75
from deepwork.core.command_executor import (
86
CommandResult,
97
all_commands_succeeded,

tests/unit/test_rules_parser.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,13 @@
22

33
from pathlib import Path
44

5-
import pytest
6-
75
from deepwork.core.pattern_matcher import matches_any_pattern as matches_pattern
86
from deepwork.core.rules_parser import (
9-
DEFAULT_COMPARE_TO,
107
DetectionMode,
118
PairConfig,
129
Rule,
13-
RulesParseError,
14-
evaluate_rules,
1510
evaluate_rule,
11+
evaluate_rules,
1612
load_rules_from_directory,
1713
)
1814

tests/unit/test_rules_queue.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"""Tests for rules queue system (QS-6.x from test_scenarios.md)."""
22

3-
import json
43
from pathlib import Path
54

65
import pytest

0 commit comments

Comments
 (0)