mirror of
https://github.com/leonvanzyl/autocoder.git
synced 2026-01-30 06:12:06 +00:00
chore: clean up unused imports and sort import blocks
Remove unused imports and organize import statements to pass ruff linting checks: - mcp_server/feature_mcp.py: Remove unused imports (are_dependencies_satisfied, get_blocking_dependencies) and alphabetize import block - parallel_orchestrator.py: Remove unused imports (time, Awaitable) and add blank lines between import groups per PEP 8 - server/routers/features.py: Alphabetize imports in dependency resolver These changes were identified by running `ruff check .` and auto-fixed with `--fix` flag. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -575,7 +575,7 @@ def _get_dependency_resolver():
|
||||
root = Path(__file__).parent.parent.parent
|
||||
if str(root) not in sys.path:
|
||||
sys.path.insert(0, str(root))
|
||||
from api.dependency_resolver import would_create_circular_dependency, MAX_DEPENDENCIES_PER_FEATURE
|
||||
from api.dependency_resolver import MAX_DEPENDENCIES_PER_FEATURE, would_create_circular_dependency
|
||||
return would_create_circular_dependency, MAX_DEPENDENCIES_PER_FEATURE
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user