Skip to content

Commit 4de64d0

Browse files
committed
fix: remove trailing whitespace from blank line
Fixed linting error W293 - blank line contained whitespace in test_split_pdf_no_ranges_error test.
1 parent 644f5ab commit 4de64d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/test_direct_api_integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ def test_split_pdf_no_ranges_error(self, client, sample_pdf_path):
300300
"""Test split_pdf with no ranges returns first page by default."""
301301
# When no page_ranges provided, should default to first page
302302
result = client.split_pdf(sample_pdf_path)
303-
303+
304304
assert isinstance(result, list)
305305
assert len(result) == 1 # Should return single PDF (first page)
306306
assert isinstance(result[0], bytes)

0 commit comments

Comments
 (0)