Skip to content

Commit 674bd90

Browse files
doublegateclaude
andcommitted
fix: Remove services/arms/ from mypy check in lint workflow
The services/arms/ directory contains no Python files yet (arms are still in design phase), causing mypy to fail with "no .py[i] files" error. This was preventing a clean workflow run. Changes: - Remove services/arms/ from mypy command in lint.yml - Keep services/orchestrator/ which has active Python code - mypy will continue with continue-on-error: true for type issues This resolves the mypy directory error while maintaining code quality checks on the implemented services. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 6f7cd31 commit 674bd90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Run mypy (type checking)
5252
run: |
5353
echo "Running mypy type checker..."
54-
mypy services/orchestrator/ services/arms/ --ignore-missing-imports --no-error-summary
54+
mypy services/orchestrator/ --ignore-missing-imports --no-error-summary
5555
continue-on-error: true # Don't fail on type errors initially
5656

5757
lint-rust:

0 commit comments

Comments
 (0)