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

@@ -18,11 +18,9 @@ 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
# 48 E225 missing whitespace around operator
# 28 E116 unexpected indentation (comment)
# 26 F403 from * import used
# 14 E251 unexpected spaces around keyword argument '='
# 14 E203 whitespace before
# 8 B006 mutable argument defaults
# 7 E999 invalid syntax
# 7 E111 indentation is not a multiple of four
@@ -31,4 +29,3 @@ 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 E202 whitespace before )