-
-
Notifications
You must be signed in to change notification settings - Fork 52
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Description
Running ruff check cortex/ reports 164 linting issues, 149 of which are auto-fixable.
Main Categories
- Import sorting (I001): Import blocks are un-sorted
- Deprecated typing (UP035/UP006): Using
typing.List,typing.Dictinstead of built-inlist,dict - Optional syntax (UP045): Using
Optional[X]instead ofX | None
Fix
ruff check cortex/ --fixBenefits
- Cleaner, more modern Python code
- Better compatibility with Python 3.10+ type hints
- Consistent import ordering
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request