Skip to content

Commit 2d792c1

Browse files
committed
fix: Add qualname for ToolboxTool instances
1 parent 827129f commit 2d792c1

File tree

1 file changed

+1
-1
lines changed
  • packages/toolbox-core/src/toolbox_core

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def __init__(
8686
self.__doc__ = desc
8787
self.__signature__ = Signature(parameters=params, return_annotation=str)
8888
self.__annotations__ = {p.name: p.annotation for p in params}
89-
# TODO: self.__qualname__ ??
89+
self.__qualname__ = f"{self.__class__.__qualname__}.{name}"
9090

9191
# map of parameter name to auth service required by it
9292
self.__required_authn_params = required_authn_params

0 commit comments

Comments
 (0)