Commit a456097
committed
fix(spp_user_roles): pass strict=True to zip() in create override
CI's ruff (B905) flagged `zip(new_records, groups_vals_list)` for
omitting the explicit `strict=` parameter. The two iterables are built
side-by-side in the same loop above the call, so they're guaranteed
equal length — make it explicit with `strict=True` to satisfy the
linter and turn an undetectable mismatch into a clear runtime error
if the invariant ever breaks.1 parent 1b5d3aa commit a456097
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
32 | | - | |
| 32 | + | |
33 | 33 | | |
34 | 34 | | |
35 | 35 | | |
| |||
0 commit comments