Abstract superclass of all DocumentConverters.
| 139 | |
| 140 | |
| 141 | class DocumentConverter: |
| 142 | """Abstract superclass of all DocumentConverters.""" |
| 143 | |
| 144 | def convert(self, local_path: str, **kwargs: Any) -> Union[None, DocumentConverterResult]: |
| 145 | raise NotImplementedError() |
| 146 | |
| 147 | |
| 148 | class PlainTextConverter(DocumentConverter): |
nothing calls this directly
no outgoing calls
no test coverage detected