Overrides InformalParserInterface.load_data_source()
(self, path: str, file_name: str)
| 13 | class PdfParser(InformalParserInterface): |
| 14 | """Extract text from a PDF""" |
| 15 | def load_data_source(self, path: str, file_name: str) -> str: |
| 16 | """Overrides InformalParserInterface.load_data_source()""" |
| 17 | pass |
| 18 | |
| 19 | def extract_text(self, full_file_path: str) -> dict: |
| 20 | """Overrides InformalParserInterface.extract_text()""" |
nothing calls this directly
no outgoing calls
no test coverage detected