We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8671c2e commit 1b8c43dCopy full SHA for 1b8c43d
1 file changed
tests/test_utils.py
@@ -70,4 +70,6 @@ def test_requirements_version(tmp_path: Path) -> None:
70
for line in non_matching:
71
req_file = tmp_path / "requirements.txt"
72
req_file.write_text(line + "\n")
73
- assert utils.requirements_version(tmp_path) is None, f"Should not match: {line!r}"
+ assert (
74
+ utils.requirements_version(tmp_path) is None
75
+ ), f"Should not match: {line!r}"
0 commit comments