Skip to content

Commit

Permalink
temporarily raise assertion error to check that tests run
Browse files Browse the repository at this point in the history
  • Loading branch information
ccurme committed Sep 17, 2024
1 parent 48ca84d commit 8f78650
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions libs/community/langchain_community/document_loaders/pdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,7 @@ def lazy_load(
self,
) -> Iterator[Document]:
"""Lazy load given path as pages."""
raise AssertionError("Testing!")
if self.web_path:
blob = Blob.from_data(open(self.file_path, "rb").read(), path=self.web_path) # type: ignore[attr-defined]
else:
Expand Down

0 comments on commit 8f78650

Please sign in to comment.