Skip to content

Commit 5c2dff7

Browse files
authored
fix: Add qualname for ToolboxTool instances (#134)
1 parent 5d62138 commit 5c2dff7

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
@@ -93,7 +93,7 @@ def __init__(
9393
)
9494

9595
self.__annotations__ = {p.name: p.annotation for p in inspect_type_params}
96-
# TODO: self.__qualname__ ??
96+
self.__qualname__ = f"{self.__class__.__qualname__}.{self.__name__}"
9797

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

0 commit comments

Comments
 (0)