Skip to content

Commit 9b7fa7a

Browse files
author
Peter Amstutz
committed
Fix typeshed def for Popen.kill() and Popen.terminate()
1 parent 3eec94b commit 9b7fa7a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

typeshed/2.7/subprocess32.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@ class Popen:
4949
def poll(self) -> int: ...
5050
def wait(self, timeout: Optional[Any] = ..., endtime: Optional[Any] = ...): ...
5151
def send_signal(self, sig): ...
52-
def terminate(self): ...
53-
def kill(self): ...
52+
def terminate(self) -> None: ...
53+
def kill(self) -> None: ...

0 commit comments

Comments
 (0)