From edfb0509dc454fc0374ab0ce63f1d2352dcdb4b6 Mon Sep 17 00:00:00 2001 From: Jorge Date: Mon, 26 Feb 2024 10:38:41 +0100 Subject: [PATCH] Mypy --- .../langchain_google_vertexai/vectorstores/vectorstores.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/vertexai/langchain_google_vertexai/vectorstores/vectorstores.py b/libs/vertexai/langchain_google_vertexai/vectorstores/vectorstores.py index c059918f..3813132d 100644 --- a/libs/vertexai/langchain_google_vertexai/vectorstores/vectorstores.py +++ b/libs/vertexai/langchain_google_vertexai/vectorstores/vectorstores.py @@ -197,7 +197,7 @@ def _get_default_embeddings(cls) -> "TensorflowHubEmbeddings": # TODO: Change to vertexai embbedingss from langchain_community.embeddings import ( - TensorflowHubEmbeddings, # type: ignore[import-not-found] + TensorflowHubEmbeddings, ) return TensorflowHubEmbeddings()