Skip to content

Commit 6c9f1db

Browse files
Ambient Code Botclaude
andcommitted
fix: add strict=True to zip() call to satisfy ruff B905 lint rule
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 661fa73 commit 6c9f1db

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python/packages/jumpstarter/jumpstarter/client/lease_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -903,7 +903,7 @@ async def fake_router(*args, **kwargs):
903903
expected_delays = [0.3, 0.6, 1.2, 2.4, 4.8, 5.0]
904904
actual_delays = [call.args[0] for call in mock_sleep.call_args_list]
905905
assert len(actual_delays) == len(expected_delays)
906-
for actual, expected in zip(actual_delays, expected_delays):
906+
for actual, expected in zip(actual_delays, expected_delays, strict=True):
907907
assert actual == pytest.approx(expected), (
908908
f"Expected delay {expected}, got {actual}"
909909
)

0 commit comments

Comments
 (0)