(self)
| 177 | |
| 178 | @cached_property |
| 179 | def context(self) -> Dict[str, List[Tuple["Image.Image", List[Any]]]]: |
| 180 | words, boxes = self.ocr_reader.apply_ocr(self.b) |
| 181 | return self._generate_document_output([self.b], [words], [boxes], [(self.b.width, self.b.height)]) |
| 182 | |
| 183 | |
| 184 | class WebDocument(Document): |
nothing calls this directly
no test coverage detected