Fixing flake8 E261 errors

This commit is contained in:
Lukasz Langa
2016-12-19 22:09:35 -08:00
parent b84f20a011
commit fe0e3744cc
219 changed files with 4041 additions and 3099 deletions

View File

@@ -180,8 +180,8 @@ else:
# TODO types
PIPE = ... # type: Any
STDOUT = ... # type: Any
PIPE = ... # type: Any
STDOUT = ... # type: Any
if sys.version_info >= (3, 3):
DEVNULL = ... # type: Any
class SubprocessError(Exception): ...
@@ -191,7 +191,7 @@ if sys.version_info >= (3, 3):
class CalledProcessError(Exception):
returncode = 0
cmd = ... # type: str
output = b'' # May be None
output = b'' # May be None
if sys.version_info >= (3, 5):
stdout = b''
@@ -201,9 +201,9 @@ class CalledProcessError(Exception):
stderr: Optional[str] = ...) -> None: ...
class Popen:
stdin = ... # type: IO[Any]
stdout = ... # type: IO[Any]
stderr = ... # type: IO[Any]
stdin = ... # type: IO[Any]
stdout = ... # type: IO[Any]
stderr = ... # type: IO[Any]
pid = 0
returncode = 0