File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/toolbox-core/src/toolbox_core Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ def __name__(self) -> str:
62
62
return self .__async_tool .__name__
63
63
64
64
@property
65
- def __doc__ (self ) -> Union [str , None ]: # type: ignore[override]
65
+ def __doc__ (self ) -> Union [str , None ]: # type: ignore[override]
66
66
# Standard Python object attributes like __doc__ are technically "writable".
67
67
# But not defining a setter function makes this a read-only property.
68
68
# Mypy flags this issue in the type checks.
@@ -73,7 +73,7 @@ def __signature__(self) -> Signature:
73
73
return self .__async_tool .__signature__
74
74
75
75
@property
76
- def __annotations__ (self ) -> dict [str , Any ]: # type: ignore[override]
76
+ def __annotations__ (self ) -> dict [str , Any ]: # type: ignore[override]
77
77
# Standard Python object attributes like __doc__ are technically "writable".
78
78
# But not defining a setter function makes this a read-only property.
79
79
# Mypy flags this issue in the type checks.
You can’t perform that action at this time.
0 commit comments