fix: Use correct type for actions parameter in ApplicationIntegrationToolset

Merge https://github.com/google/adk-python/pull/2102

Addresses https://github.com/google/adk-python/issues/2101

I've ran `pytest ./tests/unittests`, and all tests passed

COPYBARA_INTEGRATE_REVIEW=https://github.com/google/adk-python/pull/2102 from manifoldtimblin:fix-type-hint 6d4ab724ff07688158d3d121a78b2c00493a26a7
PiperOrigin-RevId: 786046567
This commit is contained in:
Michael Timblin
2025-07-22 16:49:02 -07:00
committed by Copybara-Service
parent bda3df2480
commit ce7253f63f
@@ -87,7 +87,7 @@ class ApplicationIntegrationToolset(BaseToolset):
triggers: Optional[List[str]] = None,
connection: Optional[str] = None,
entity_operations: Optional[str] = None,
actions: Optional[str] = None,
actions: Optional[list[str]] = None,
# Optional parameter for the toolset. This is prepended to the generated
# tool/python function name.
tool_name_prefix: Optional[str] = "",