Skip to content
This repository was archived by the owner on Dec 4, 2024. It is now read-only.

Commit 5103f23

Browse files
authored
Fixes asyncio.events definition (python#6811)
1 parent 1b3d629 commit 5103f23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/asyncio/events.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ _SSLContext = Union[bool, None, ssl.SSLContext]
2424
_TransProtPair = tuple[BaseTransport, BaseProtocol]
2525

2626
class Handle:
27-
_cancelled = False
27+
_cancelled: bool
2828
_args: Sequence[Any]
2929
if sys.version_info >= (3, 7):
3030
def __init__(

0 commit comments

Comments
 (0)