fix: mypy

This commit is contained in:
Javier Martinez 2024-09-26 13:36:16 +02:00
parent 430cbf3722
commit 29c03cf694
No known key found for this signature in database

View File

@ -38,10 +38,10 @@ class NodeStoreComponent:
case "postgres": case "postgres":
try: try:
from llama_index.storage.docstore.postgres import ( from llama_index.storage.docstore.postgres import ( # type: ignore
PostgresDocumentStore, PostgresDocumentStore,
) )
from llama_index.storage.index_store.postgres import ( from llama_index.storage.index_store.postgres import ( # type: ignore
PostgresIndexStore, PostgresIndexStore,
) )
except ImportError: except ImportError: