cleaned code

This commit is contained in:
Yannick Stephan
2025-02-16 16:04:35 +01:00
parent 2b2c81a722
commit 49bea486a7
3 changed files with 3 additions and 3 deletions

View File

@@ -22,7 +22,7 @@ import pipmaster as pm
if not pm.is_installed("neo4j"): if not pm.is_installed("neo4j"):
pm.install("neo4j") pm.install("neo4j")
try: try:
from neo4j import ( from neo4j import (
AsyncGraphDatabase, AsyncGraphDatabase,

View File

@@ -363,7 +363,7 @@ class OracleVectorDBStorage(BaseVectorStorage):
async def index_done_callback(self) -> None: async def index_done_callback(self) -> None:
# Oracles handles persistence automatically # Oracles handles persistence automatically
pass pass
async def delete_entity(self, entity_name: str) -> None: async def delete_entity(self, entity_name: str) -> None:
raise NotImplementedError raise NotImplementedError

View File

@@ -423,7 +423,7 @@ class PGVectorStorage(BaseVectorStorage):
async def index_done_callback(self) -> None: async def index_done_callback(self) -> None:
# PG handles persistence automatically # PG handles persistence automatically
pass pass
async def delete_entity(self, entity_name: str) -> None: async def delete_entity(self, entity_name: str) -> None:
raise NotImplementedError raise NotImplementedError