(self)
| 151 | yield from self._process_doc(doc) |
| 152 | |
| 153 | def validation_docs(self): |
| 154 | for doc in self.dataset["validation"]: |
| 155 | yield from self._process_doc(doc) |
| 156 | |
| 157 | def should_decontaminate(self): |
| 158 | return True |
nothing calls this directly
no test coverage detected