Load in the file for extracting text.
(self, path: str, file_name: str)
| 2 | |
| 3 | class InformalParserInterface: |
| 4 | def load_data_source(self, path: str, file_name: str) -> str: |
| 5 | """Load in the file for extracting text.""" |
| 6 | pass |
| 7 | |
| 8 | def extract_text(self, full_file_name: str) -> dict: |
| 9 | """Extract text from the currently loaded file.""" |
nothing calls this directly
no outgoing calls
no test coverage detected