Skip to content
Prev Previous commit
Next Next commit
tests: add strict=False to zip() to satisfy ruff B905 lint rule
  • Loading branch information
asymness committed Jan 17, 2026
commit d25ac2202835f98b1aac9cfbcd00f003baf52859
2 changes: 1 addition & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ def test_run_with_multiple_env_files(tmp_path, files: Sequence[str], file_conten
"""
with sh.pushd(tmp_path):
file_args = []
for file_name, content in zip(files, file_contents):
for file_name, content in zip(files, file_contents, strict=True):
(tmp_path / file_name).write_text(content)
file_args.extend(["--file", file_name])

Expand Down
Loading