From c2d6eb542bfed2b590c56f6a1680915056e7a2a5 Mon Sep 17 00:00:00 2001 From: Alex Ostapenko Date: Fri, 29 Nov 2024 17:07:15 +0100 Subject: [PATCH] type ignore --- .../langchain_google_community/documentai_warehouse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/community/langchain_google_community/documentai_warehouse.py b/libs/community/langchain_google_community/documentai_warehouse.py index bdf5672b..a7a8ac21 100644 --- a/libs/community/langchain_google_community/documentai_warehouse.py +++ b/libs/community/langchain_google_community/documentai_warehouse.py @@ -40,7 +40,7 @@ class DocumentAIWarehouseRetriever(BaseRetriever): If nothing is provided, all documents in the project will be searched.""" qa_size_limit: int = 5 """The limit on the number of documents returned.""" - client: "DocumentServiceClient" = None #: :meta private: + client: "DocumentServiceClient" = None # type:ignore[assignment] #: :meta private: @model_validator(mode="before") @classmethod