Fixing flake8 W errors

This commit is contained in:
Lukasz Langa
2016-12-19 21:52:56 -08:00
parent d2c0f83a72
commit b84f20a011
37 changed files with 35 additions and 72 deletions

View File

@@ -24,18 +24,14 @@ ignore = F401, F811, E301, E302, E305, E501, E701, E704
# 44 E127 continuation line over-indented for visual indent
# 37 E126 continuation line over-indented for hanging indent
# 30 E124 closing bracket does not match visual indentation
# 29 W391 blank line at end of file
# 28 E116 unexpected indentation (comment)
# 26 F403 from * import used
# 20 E101 mixed spaces and tabs
# 19 W191 tabs
# 14 E251 unexpected spaces around keyword argument '='
# 14 E203 whitespace before
# 10 W291 trailing whitespace
# 8 B006 mutable argument defaults
# 7 E999 invalid syntax
# 7 E111 indentation is not a multiple of four
# 5 W293 blank line with whitespace
# 5 F405 name undefined or from * imports
# 5 E123 closing bracket does not match indentation of opening bracket
# 4 E262 inline comment should start with #
@@ -43,7 +39,6 @@ ignore = F401, F811, E301, E302, E305, E501, E701, E704
# 4 E114 indentation is not a multiple of four
# 3 E303 too many blank lines
# 3 E125 continuation line with same indent as next logical line
# 2 W292 no newline at end of file
# 2 E241 multiple spaces after ,
# 2 E131 continuation line unaligned for hanging indent
# 2 B303 __metaclass__ use on Python 3