Minor changes, issue still not fixed

This commit is contained in:
Andrej Milicevic 2025-09-16 14:59:29 +02:00
parent 3a073ca462
commit 212b5f1d94

View file

@ -4,7 +4,6 @@ import asyncio
import json import json
from textwrap import dedent from textwrap import dedent
from uuid import UUID from uuid import UUID
from webbrowser import Error
from typing import List, Dict, Any, Optional, Tuple, Type, Union from typing import List, Dict, Any, Optional, Tuple, Type, Union
from falkordb import FalkorDB from falkordb import FalkorDB
@ -427,7 +426,7 @@ class FalkorDBAdapter(VectorDBInterface, GraphDBInterface):
for index in indices.result_set for index in indices.result_set
] ]
) )
except Error as e: except Exception as e:
print(e) print(e)
return False return False