remove drops unused

This commit is contained in:
Yannick Stephan
2025-02-17 23:16:17 +01:00
parent 442838d0f1
commit 66c4b01fdd
7 changed files with 2 additions and 37 deletions

View File

@@ -300,11 +300,7 @@ class PGKVStorage(BaseKVStorage):
async def index_done_callback(self) -> None:
# PG handles persistence automatically
pass
async def drop(self) -> None:
raise NotImplementedError
@final
@dataclass
class PGVectorStorage(BaseVectorStorage):
@@ -534,9 +530,6 @@ class PGDocStatusStorage(DocStatusStorage):
)
return data
async def drop(self) -> None:
raise NotImplementedError
class PGGraphQueryException(Exception):
"""Exception for the AGE queries."""