File tree 2 files changed +3
-3
lines changed 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1545,7 +1545,7 @@ def _ignore(event: E) -> None:
1545
1545
1546
1546
@contextmanager
1547
1547
def attach_winch_signal_handler (
1548
- handler : Callable [[], None ]
1548
+ handler : Callable [[], None ],
1549
1549
) -> Generator [None , None , None ]:
1550
1550
"""
1551
1551
Attach the given callback as a WINCH signal handler within the context
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ def fileno(self) -> int:
66
66
67
67
68
68
def new_eventloop_with_inputhook (
69
- inputhook : Callable [[InputHookContext ], None ]
69
+ inputhook : Callable [[InputHookContext ], None ],
70
70
) -> AbstractEventLoop :
71
71
"""
72
72
Create a new event loop with the given inputhook.
@@ -77,7 +77,7 @@ def new_eventloop_with_inputhook(
77
77
78
78
79
79
def set_eventloop_with_inputhook (
80
- inputhook : Callable [[InputHookContext ], None ]
80
+ inputhook : Callable [[InputHookContext ], None ],
81
81
) -> AbstractEventLoop :
82
82
"""
83
83
Create a new event loop with the given inputhook, and activate it.
You can’t perform that action at this time.
0 commit comments