You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: resolve all ruff lint and format errors for CI
- Fix type comparisons using `is` instead of `==` (E721)
- Combine nested if statements in conversation.py and sanitizer.py (SIM102)
- Remove unused variables in sandbox.py (F841)
- Add per-file-ignores in pyproject.toml for test patterns:
- ARG001: Unused function arguments (common in test stubs)
- ARG005: Unused lambda arguments (common in mock side_effects)
- SIM117: Nested with statements (clearer for multiple mocks)
- Run ruff format on all source and test files
All 616 tests pass with 99.26% coverage.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
0 commit comments