Skip to content

Commit dfa139a

Browse files
committed
fixed black 2
1 parent 4110a43 commit dfa139a

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

tests/test_uncompress.py

+9-3
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,12 @@
88
runner = CliRunner()
99

1010

11-
@pytest.mark.parametrize("input_pdf_filepath", Path("sample-files").glob("*.pdf"))
12-
def test_uncompress_all_sample_files(input_pdf_filepath: Path, tmp_path: Path) -> None:
11+
@pytest.mark.parametrize(
12+
"input_pdf_filepath", Path("sample-files").glob("*.pdf")
13+
)
14+
def test_uncompress_all_sample_files(
15+
input_pdf_filepath: Path, tmp_path: Path
16+
) -> None:
1317

1418
output_pdf_filepath = tmp_path / "uncompressed_output.pdf"
1519

@@ -31,4 +35,6 @@ def test_uncompress_all_sample_files(input_pdf_filepath: Path, tmp_path: Path) -
3135
for page in reader.pages:
3236
contents = page.get("/Contents")
3337
if contents:
34-
assert "/Filter" not in contents, "Content stream is still compressed"
38+
assert (
39+
"/Filter" not in contents
40+
), "Content stream is still compressed"

0 commit comments

Comments
 (0)