Skip to content

Commit ce7253f

Browse files
manifoldtimblincopybara-github
authored andcommitted
fix: Use correct type for actions parameter in ApplicationIntegrationToolset
Merge #2102 Addresses #2101 I've ran `pytest ./tests/unittests`, and all tests passed COPYBARA_INTEGRATE_REVIEW=#2102 from manifoldtimblin:fix-type-hint 6d4ab72 PiperOrigin-RevId: 786046567
1 parent bda3df2 commit ce7253f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/google/adk/tools/application_integration_tool/application_integration_toolset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def __init__(
8787
triggers: Optional[List[str]] = None,
8888
connection: Optional[str] = None,
8989
entity_operations: Optional[str] = None,
90-
actions: Optional[str] = None,
90+
actions: Optional[list[str]] = None,
9191
# Optional parameter for the toolset. This is prepended to the generated
9292
# tool/python function name.
9393
tool_name_prefix: Optional[str] = "",

0 commit comments

Comments
 (0)