mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 21:46:42 +08:00
Fix type of loop parameter to start_unix_server (#1939)
This commit is contained in:
committed by
Guido van Rossum
parent
ac465ea224
commit
f91163d729
@@ -56,7 +56,7 @@ if sys.platform != 'win32':
|
||||
client_connected_cb: _ClientConnectedCallback,
|
||||
path: str = ...,
|
||||
*,
|
||||
loop: int = ...,
|
||||
loop: Optional[events.AbstractEventLoop] = ...,
|
||||
limit: int = ...,
|
||||
**kwds: Any) -> Generator[Any, None, events.AbstractServer]: ...
|
||||
|
||||
|
||||
Reference in New Issue
Block a user