mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
stubs: change psutil's Process.wait timeout argument to float (#11883)
Fixes #11866
This commit is contained in:
@@ -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: ...
|
||||
|
||||
Reference in New Issue
Block a user