stubs: change psutil's Process.wait timeout argument to float (#11883)

Fixes #11866
This commit is contained in:
Kanishk Pachauri
2024-05-10 07:55:00 +05:30
committed by GitHub
parent 72623c6b15
commit 120f01dcb3

View File

@@ -222,7 +222,7 @@ class Process:
def resume(self) -> None: ...
def terminate(self) -> None: ...
def kill(self) -> None: ...
def wait(self, timeout: int | None = None) -> int: ...
def wait(self, timeout: float | None = None) -> int: ...
class Popen(Process):
def __init__(self, *args, **kwargs) -> None: ...