Fixing flake8 E202, E203, E225 errors

This commit is contained in:
Lukasz Langa
2016-12-20 01:02:59 -08:00
parent 6eb97964fd
commit d70bb0c00f
11 changed files with 54 additions and 57 deletions

View File

@@ -7,50 +7,50 @@ environ = ... # type: Dict[str, str]
pathconf_names = ... # type: Dict[str, int]
sysconf_names = ... # type: Dict[str, int]
EX_CANTCREAT= ... # type: int
EX_CONFIG= ... # type: int
EX_DATAERR= ... # type: int
EX_IOERR= ... # type: int
EX_NOHOST= ... # type: int
EX_NOINPUT= ... # type: int
EX_NOPERM= ... # type: int
EX_NOUSER= ... # type: int
EX_OK= ... # type: int
EX_OSERR= ... # type: int
EX_OSFILE= ... # type: int
EX_PROTOCOL= ... # type: int
EX_SOFTWARE= ... # type: int
EX_TEMPFAIL= ... # type: int
EX_UNAVAILABLE= ... # type: int
EX_USAGE= ... # type: int
F_OK= ... # type: int
NGROUPS_MAX= ... # type: int
O_APPEND= ... # type: int
O_ASYNC= ... # type: int
O_CREAT= ... # type: int
O_DIRECT= ... # type: int
O_DIRECTORY= ... # type: int
O_DSYNC= ... # type: int
O_EXCL= ... # type: int
O_LARGEFILE= ... # type: int
O_NDELAY= ... # type: int
O_NOATIME= ... # type: int
O_NOCTTY= ... # type: int
O_NOFOLLOW= ... # type: int
O_NONBLOCK= ... # type: int
O_RDONLY= ... # type: int
O_RDWR= ... # type: int
O_RSYNC= ... # type: int
O_SYNC= ... # type: int
O_TRUNC= ... # type: int
O_WRONLY= ... # type: int
R_OK= ... # type: int
TMP_MAX= ... # type: int
WCONTINUED= ... # type: int
WNOHANG= ... # type: int
WUNTRACED= ... # type: int
W_OK= ... # type: int
X_OK= ... # type: int
EX_CANTCREAT = ... # type: int
EX_CONFIG = ... # type: int
EX_DATAERR = ... # type: int
EX_IOERR = ... # type: int
EX_NOHOST = ... # type: int
EX_NOINPUT = ... # type: int
EX_NOPERM = ... # type: int
EX_NOUSER = ... # type: int
EX_OK = ... # type: int
EX_OSERR = ... # type: int
EX_OSFILE = ... # type: int
EX_PROTOCOL = ... # type: int
EX_SOFTWARE = ... # type: int
EX_TEMPFAIL = ... # type: int
EX_UNAVAILABLE = ... # type: int
EX_USAGE = ... # type: int
F_OK = ... # type: int
NGROUPS_MAX = ... # type: int
O_APPEND = ... # type: int
O_ASYNC = ... # type: int
O_CREAT = ... # type: int
O_DIRECT = ... # type: int
O_DIRECTORY = ... # type: int
O_DSYNC = ... # type: int
O_EXCL = ... # type: int
O_LARGEFILE = ... # type: int
O_NDELAY = ... # type: int
O_NOATIME = ... # type: int
O_NOCTTY = ... # type: int
O_NOFOLLOW = ... # type: int
O_NONBLOCK = ... # type: int
O_RDONLY = ... # type: int
O_RDWR = ... # type: int
O_RSYNC = ... # type: int
O_SYNC = ... # type: int
O_TRUNC = ... # type: int
O_WRONLY = ... # type: int
R_OK = ... # type: int
TMP_MAX = ... # type: int
WCONTINUED = ... # type: int
WNOHANG = ... # type: int
WUNTRACED = ... # type: int
W_OK = ... # type: int
X_OK = ... # type: int
def WCOREDUMP(status: int) -> bool: ...
def WEXITSTATUS(status: int) -> bool: ...