mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-23 04:11:28 +08:00
updating stderr to return type Any (#776)
This commit is contained in:
committed by
Jukka Lehtosalo
parent
957307b785
commit
830c2fb089
@@ -11,7 +11,7 @@ if sys.version_info >= (3, 5):
|
||||
args = ... # type: Union[List, str]
|
||||
returncode = ... # type: int
|
||||
stdout = ... # type: Any
|
||||
stderr = ... # type: Union[str, bytes]
|
||||
stderr = ... # type: Any
|
||||
def __init__(self, args: Union[List, str],
|
||||
returncode: int,
|
||||
stdout: Union[str, bytes],
|
||||
|
||||
Reference in New Issue
Block a user