Skip to content

Commit

Permalink
fix: mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
jaluma committed Sep 26, 2024
1 parent 430cbf3 commit 29c03cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions private_gpt/components/node_store/node_store_component.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ def __init__(self, settings: Settings) -> None:

case "postgres":
try:
from llama_index.storage.docstore.postgres import (
from llama_index.storage.docstore.postgres import ( # type: ignore
PostgresDocumentStore,
)
from llama_index.storage.index_store.postgres import (
from llama_index.storage.index_store.postgres import ( # type: ignore
PostgresIndexStore,
)
except ImportError:
Expand Down

0 comments on commit 29c03cf

Please sign in to comment.