Get document status by ID
(self, doc_id: str)
| 118 | return self._data.get(id) |
| 119 | |
| 120 | async def get(self, doc_id: str) -> Union[DocProcessingStatus, None]: |
| 121 | """Get document status by ID""" |
| 122 | return self._data.get(doc_id) |
| 123 | |
| 124 | async def delete(self, doc_ids: list[str]): |
| 125 | """Delete document status by IDs""" |
no outgoing calls
no test coverage detected