removed unused methods

This commit is contained in:
Yannick Stephan
2025-02-16 14:50:04 +01:00
parent a0844bca28
commit 9a5fbaaa5f
4 changed files with 4 additions and 41 deletions

View File

@@ -260,8 +260,3 @@ class DocStatusStorage(BaseKVStorage, ABC):
@abstractmethod
async def get_processed_docs(self) -> dict[str, DocProcessingStatus]:
"""Get all procesed documents"""
@abstractmethod
async def update_doc_status(self, data: dict[str, Any]) -> None:
"""Updates the status of a document. By default, it calls upsert."""
await self.upsert(data)