Skip to content

Commit 360b4be

Browse files
committed
fix
1 parent 9ace575 commit 360b4be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/toolbox-core/src/toolbox_core/sync_tool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def __call__(self, *args: Any, **kwargs: Any) -> str:
9696
Returns:
9797
The string result returned by the remote tool execution.
9898
"""
99-
return self.__run_as_sync(self.__async_tool(**kwargs))
99+
return self.__run_as_sync(self.__async_tool(*args, **kwargs))
100100

101101
def add_auth_token_getters(
102102
self,

0 commit comments

Comments
 (0)