From dd0faab07e068675d8bbfb216c1cc360f5810418 Mon Sep 17 00:00:00 2001 From: Eugene Yurtsev Date: Fri, 28 Mar 2025 14:23:50 -0400 Subject: [PATCH] fix types --- libs/core/tests/unit_tests/test_tools.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/core/tests/unit_tests/test_tools.py b/libs/core/tests/unit_tests/test_tools.py index 195173aa20d..f65e68bc136 100644 --- a/libs/core/tests/unit_tests/test_tools.py +++ b/libs/core/tests/unit_tests/test_tools.py @@ -2629,7 +2629,7 @@ async def test_tool_ainvoke_does_not_mutate_inputs() -> None: func=sync_no_op, ) - tool_call = { + tool_call: ToolCall = { "name": "sample_tool", "args": {"foo": 2}, "id": "call_0_82c17db8-95df-452f-a4c2-03f809022134", @@ -2677,7 +2677,7 @@ def test_tool_invoke_does_not_mutate_inputs() -> None: func=sync_no_op, ) - tool_call = { + tool_call: ToolCall = { "name": "sample_tool", "args": {"foo": 2}, "id": "call_0_82c17db8-95df-452f-a4c2-03f809022134",