From 9346498edb54717375b51a603a61b96f2d8ac1e1 Mon Sep 17 00:00:00 2001 From: Renato Byrro Date: Tue, 22 Apr 2025 21:26:45 -0300 Subject: [PATCH] Fix google type errors (#376) --- toolkits/google/arcade_google/tools/__init__.py | 6 +++--- toolkits/google/pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/toolkits/google/arcade_google/tools/__init__.py b/toolkits/google/arcade_google/tools/__init__.py index da519efd..f30b1d6e 100644 --- a/toolkits/google/arcade_google/tools/__init__.py +++ b/toolkits/google/arcade_google/tools/__init__.py @@ -66,9 +66,9 @@ __all__ = [ get_document_by_id, insert_text_at_end_of_document, # Google Drive - get_file_tree_structure, # type: ignore[has-type] - search_and_retrieve_documents, # type: ignore[has-type] - search_documents, # type: ignore[has-type] + "get_file_tree_structure", + "search_and_retrieve_documents", + "search_documents", # Google File Picker generate_google_file_picker_url, # Google Gmail diff --git a/toolkits/google/pyproject.toml b/toolkits/google/pyproject.toml index 77f13a46..b7a11277 100644 --- a/toolkits/google/pyproject.toml +++ b/toolkits/google/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "arcade_google" -version = "1.2.0" +version = "1.2.1" description = "Arcade.dev LLM tools for Google Workspace" authors = ["Arcade "]