Overrides UpdatedInformalParserInterface.load_data_source()
(self, path: str, file_name: str)
| 71 | class EmlParserNew: |
| 72 | """Extract text from an email.""" |
| 73 | def load_data_source(self, path: str, file_name: str) -> str: |
| 74 | """Overrides UpdatedInformalParserInterface.load_data_source()""" |
| 75 | pass |
| 76 | |
| 77 | def extract_text_from_email(self, full_file_path: str) -> dict: |
| 78 | """A method defined only in EmlParser. |
nothing calls this directly
no outgoing calls
no test coverage detected