We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25f9f78 commit 07b3dfdCopy full SHA for 07b3dfd
packages/toolbox-core/src/toolbox_core/sync_tool.py
@@ -65,7 +65,9 @@ def __init__(
65
# itself is being processed during module import or class definition.
66
# Defining __qualname__ as a property leads to a TypeError because the class object needs
67
# a string value immediately, not a descriptor that evaluates later.
68
- self.__qualname__ = f"{self.__class__.__qualname__}.{self.__async_tool._name}"
+ self.__qualname__ = (
69
+ f"{self.__class__.__qualname__}.{self.__async_tool.__name__}"
70
+ )
71
72
@property
73
def __name__(self) -> str:
0 commit comments