Skip to content

Commit a805455

Browse files
committed
lint
1 parent dfe7768 commit a805455

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def __name__(self) -> str:
6262
return self.__async_tool.__name__
6363

6464
@property
65-
def __doc__(self) -> Union[str, None]: # type: ignore[override]
65+
def __doc__(self) -> Union[str, None]: # type: ignore[override]
6666
# Standard Python object attributes like __doc__ are technically "writable".
6767
# But not defining a setter function makes this a read-only property.
6868
# Mypy flags this issue in the type checks.
@@ -73,7 +73,7 @@ def __signature__(self) -> Signature:
7373
return self.__async_tool.__signature__
7474

7575
@property
76-
def __annotations__(self) -> dict[str, Any]: # type: ignore[override]
76+
def __annotations__(self) -> dict[str, Any]: # type: ignore[override]
7777
# Standard Python object attributes like __doc__ are technically "writable".
7878
# But not defining a setter function makes this a read-only property.
7979
# Mypy flags this issue in the type checks.

0 commit comments

Comments
 (0)