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
- Add explicit type annotation for children list in walker.py (list[DirInfo | FileInfo])
- Add explicit type annotations for va/vb in sort.py comparator (float | str)
- Add type: ignore[operator] comments for safe comparisons with union types
The code uses isinstance checks to safely narrow types at runtime before comparisons,
but MyPy cannot infer this narrowing across union types in all cases.
🤖 Generated with Claude Code
Co-Authored-By: Claude <noreply@anthropic.com>
0 commit comments