(self)
| 76 | return [doc for doc in self.documents if doc.is_unconverted()] |
| 77 | |
| 78 | def get_safe_documents(self) -> list[Document]: |
| 79 | return [doc for doc in self.documents if doc.is_safe()] |
| 80 | |
| 81 | def get_failed_documents(self) -> list[Document]: |
| 82 | return [doc for doc in self.documents if doc.is_failed()] |