pep: fix e261

This commit is contained in:
satreix
2016-03-04 12:47:51 -08:00
parent 0ac947099c
commit f1e7078902
3 changed files with 3 additions and 4 deletions
+1 -2
View File
@@ -6,10 +6,9 @@
# E126 continuation line over-indented for hanging indent
# E127 continuation line over-indented for visual indent
# E128 continuation line under-indented for visual indent
# E261 at least two spaces before inline comment
# E262 inline comment should start with '# '
# E265 block comment should start with '# '
# E501 line too long (312 > 160 characters)
# E502 the backslash is redundant between brackets
ignore = E121,E122,E123,E124,E125,E126,E127,E128,E261,E262,E265,E501,E502
ignore = E121,E122,E123,E124,E125,E126,E127,E128,E262,E265,E501,E502
max-line-length = 160