Skip to content

Commit 668dc9c

Browse files
committed
Fix Line too long
1 parent 4607354 commit 668dc9c

File tree

1 file changed

+3
-2
lines changed
  • libs/community/tests/integration_tests/document_loaders

1 file changed

+3
-2
lines changed

libs/community/tests/integration_tests/document_loaders/test_pdf.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,8 +224,9 @@ def test_amazontextract_loader(
224224
@pytest.mark.skip(reason="Requires AWS credentials to run")
225225
def test_amazontextract_loader_failures() -> None:
226226
# 2-page PDF local file system
227-
two_page_pdf = (Path(__file__).parent.parent /
228-
"examples/multi-page-forms-sample-2-page.pdf")
227+
two_page_pdf = (
228+
Path(__file__).parent.parent / "examples/multi-page-forms-sample-2-page.pdf"
229+
)
229230
loader = AmazonTextractPDFLoader(two_page_pdf)
230231
with pytest.raises(ValueError):
231232
loader.load()

0 commit comments

Comments
 (0)