Skip to content

Commit d205815

Browse files
committed
fix type annotation
1 parent e466d52 commit d205815

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/typing.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ AnyStr = TypeVar("AnyStr", str, bytes) # noqa: Y001
443443
class _Generic:
444444
if sys.version_info < (3, 12):
445445
__slots__ = ()
446-
_is_protocol = False
446+
_is_protocol: bool = False
447447

448448
if sys.version_info >= (3, 10):
449449
@classmethod

0 commit comments

Comments
 (0)