(self, image: "Image.Image")
| 146 | self.reader = None |
| 147 | |
| 148 | def apply_ocr(self, image: "Image.Image") -> Tuple[(List[str], List[List[int]])]: |
| 149 | raise NoOCRReaderFound("Unable to find any OCR reader and OCR extraction was requested") |
| 150 | |
| 151 | @staticmethod |
| 152 | def _check_if_available(): |
nothing calls this directly
no test coverage detected