Fixing flake8 E401, E402 errors

This commit is contained in:
Lukasz Langa
2016-12-20 00:41:22 -08:00
parent 147772950f
commit 6eb97964fd
25 changed files with 79 additions and 81 deletions

View File

@@ -18,7 +18,6 @@ ignore = F401, F811, E127, E128, E301, E302, E305, E501, E701, E704
# Errors that we need to fix before enabling flake8 by default:
# 921 F821 undefined name
# 52 E402 module-level import not at top of file
# 48 E225 missing whitespace around operator
# 28 E116 unexpected indentation (comment)
# 26 F403 from * import used
@@ -32,5 +31,4 @@ ignore = F401, F811, E127, E128, E301, E302, E305, E501, E701, E704
# 4 E114 indentation is not a multiple of four
# 3 E303 too many blank lines
# 2 B303 __metaclass__ use on Python 3
# 1 E401 multiple imports on one line
# 1 E202 whitespace before )