Skip to content

Commit e19e10c

Browse files
Merge pull request #348 from sharmaeklavya2/fix-subprocess-check-output
subprocess: Fix return type of check_output.
2 parents 6f5e20d + a7754c3 commit e19e10c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/3/subprocess.pyi

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def check_output(args: Union[str, Sequence[str]],
5858
creationflags: int = ...,
5959
restore_signals: bool = ...,
6060
start_new_session: bool = ...,
61-
pass_fds: Any = ...) -> bytes: ...
61+
pass_fds: Any = ...) -> Any: ...
6262

6363
# TODO types
6464
PIPE = ... # type: Any

0 commit comments

Comments
 (0)