Yield each page in the PDF.
(self)
| 337 | return parser.split([doc]) |
| 338 | |
| 339 | def iterate_pages(self) -> Generator[Tuple[int, Any], None, None]: |
| 340 | """Yield each page in the PDF.""" |
| 341 | raise NotImplementedError |
| 342 | |
| 343 | def get_document_from_page(self, page: Any) -> Document: |
| 344 | """ |
no outgoing calls
no test coverage detected