asyncio: fix SubprocessTransport.send_signal return type (#8890)

This commit is contained in:
Allison Karlitskaya
2022-10-13 13:17:48 +02:00
committed by GitHub
parent f02093cb64
commit c88c9dd18d

View File

@@ -39,7 +39,7 @@ class SubprocessTransport(BaseTransport):
def get_pid(self) -> int: ...
def get_returncode(self) -> int | None: ...
def get_pipe_transport(self, fd: int) -> BaseTransport | None: ...
def send_signal(self, signal: int) -> int: ...
def send_signal(self, signal: int) -> None: ...
def terminate(self) -> None: ...
def kill(self) -> None: ...