From 2a8ca06c3e7f2d3fd4e059d5e8043995172ef5b8 Mon Sep 17 00:00:00 2001 From: Liang Wu Date: Wed, 28 May 2025 16:53:39 -0700 Subject: [PATCH] chore: remove reference to genai SDK folder. Added `from __future__ import annotations` to follow the best practice. PiperOrigin-RevId: 764473253 --- src/google/adk/tools/_automatic_function_calling_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/google/adk/tools/_automatic_function_calling_util.py b/src/google/adk/tools/_automatic_function_calling_util.py index 53aeaa0..6a76066 100644 --- a/src/google/adk/tools/_automatic_function_calling_util.py +++ b/src/google/adk/tools/_automatic_function_calling_util.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -"""Forked from google3/third_party/py/google/genai/_automatic_function_calling_util.py temporarily.""" +from __future__ import annotations import inspect from types import FunctionType