Lazy-load methodology extractor.
(self)
| 88 | |
| 89 | @property |
| 90 | def extractor(self) -> MethodologyExtractor: |
| 91 | """Lazy-load methodology extractor.""" |
| 92 | if self._extractor is None: |
| 93 | self._extractor = MethodologyExtractor(self.config) |
| 94 | return self._extractor |
| 95 | |
| 96 | @property |
| 97 | def enhancer(self) -> ImageEnhancer: |
nothing calls this directly
no test coverage detected