-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Open
Description
In PR #4520, commit c14f3bb added strict=False to many zip() calls across the codebase to resolve ruff linting issues.
This was necessary to suppress warnings about zip calls without explicit strict parameters. However, these should ideally be reviewed and strengthened where possible - either by:
- Using
strict=Truewhere the iterables are known to have equal length - Adding proper validation logic to handle mismatched lengths
- Refactoring code to avoid zip entirely where appropriate
The commit touched ~37 files across the codebase, so this is a non-trivial cleanup task but would improve code quality and catch potential bugs earlier.
References:
- Commit: c14f3bb
- Message: "chore: resolve zip without explicit strict calls with strict=False everywhere"
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels