Overrides UpdatedInformalParserInterface.load_data_source()
(self, path: str, file_name: str)
| 61 | class PdfParserNew: |
| 62 | """Extract text from a PDF.""" |
| 63 | def load_data_source(self, path: str, file_name: str) -> str: |
| 64 | """Overrides UpdatedInformalParserInterface.load_data_source()""" |
| 65 | pass |
| 66 | |
| 67 | def extract_text(self, full_file_path: str) -> dict: |
| 68 | """Overrides UpdatedInformalParserInterface.extract_text()""" |
nothing calls this directly
no outgoing calls
no test coverage detected