Skip to content

Commit d25ac22

Browse files
committed
tests: add strict=False to zip() to satisfy ruff B905 lint rule
1 parent 3994cea commit d25ac22

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

‎tests/test_cli.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ def test_run_with_multiple_env_files(tmp_path, files: Sequence[str], file_conten
320320
"""
321321
with sh.pushd(tmp_path):
322322
file_args = []
323-
for file_name, content in zip(files, file_contents):
323+
for file_name, content in zip(files, file_contents, strict=True):
324324
(tmp_path / file_name).write_text(content)
325325
file_args.extend(["--file", file_name])
326326

0 commit comments

Comments
 (0)