From 63df70d02a4a40bb53ace28200fc18e744bf549c Mon Sep 17 00:00:00 2001 From: Jorge Date: Mon, 26 Feb 2024 10:20:56 +0100 Subject: [PATCH] Add type ignore --- .../langchain_google_vertexai/vectorstores/_document_storage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/vertexai/langchain_google_vertexai/vectorstores/_document_storage.py b/libs/vertexai/langchain_google_vertexai/vectorstores/_document_storage.py index 2661a3d5..c15c035a 100644 --- a/libs/vertexai/langchain_google_vertexai/vectorstores/_document_storage.py +++ b/libs/vertexai/langchain_google_vertexai/vectorstores/_document_storage.py @@ -6,7 +6,7 @@ from google.cloud import storage # type: ignore[attr-defined] if TYPE_CHECKING: - from google.cloud import datastore + from google.cloud import datastore # type: ignore[attr-defined] class DocumentStorage(ABC):