🔧 chore(Chroma.py): add type ignore comment to import statement for chromadb module to suppress type checking error

This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-08-25 17:19:40 -03:00
commit 1f99f59581

View file

@ -6,7 +6,7 @@ from langchain.schema import Document
from langchain.vectorstores.base import VectorStore
from langchain.schema import BaseRetriever
from langchain.embeddings.base import Embeddings
import chromadb
import chromadb # type: ignore
class ChromaComponent(CustomComponent):