updating stderr to return type Any (#776)

This commit is contained in:
Philip House
2016-12-16 19:51:52 +08:00
committed by Jukka Lehtosalo
parent 957307b785
commit 830c2fb089

View File

@@ -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],