pep: fix e121 and e122

This commit is contained in:
satreix
2016-04-10 02:45:56 -07:00
parent cf42836c95
commit eb6df45b00
12 changed files with 100 additions and 118 deletions
+1 -3
View File
@@ -1,6 +1,4 @@
[pep8]
# E121 continuation line under-indented for hanging indent
# E122 continuation line missing indentation or outdented
# E124 closing bracket does not match visual indentation
# E125 continuation line with same indent as next logical line
# E126 continuation line over-indented for hanging indent
@@ -8,5 +6,5 @@
# E128 continuation line under-indented for visual indent
# E265 block comment should start with '# '
# E501 line too long (312 > 160 characters)
ignore = E121,E122,E123,E124,E125,E126,E127,E128,E265,E501
ignore = E123,E124,E125,E126,E127,E128,E265,E501
max-line-length = 160