Commit be28d924 authored by Andrei Vagin's avatar Andrei Vagin

lint/python: ignore E117 over-indented

After recent update of flake8, we have a lot of e117 warnings:
test/zdtm.py:1748:5: E117 over-indented
test/zdtm.py:1751:5: E117 over-indented
test/zdtm.py:1755:6: E117 over-indented
test/zdtm.py:1757:7: E117 over-indented
test/zdtm.py:1764:6: E117 over-indented
test/zdtm.py:1766:5: E117 over-indented
test/zdtm.py:1767:6: E117 over-indented
Signed-off-by: 's avatarAndrei Vagin <avagin@gmail.com>
parent d7d5f9fd
...@@ -5,5 +5,6 @@ ...@@ -5,5 +5,6 @@
# E251 unexpected spaces around keyword / parameter equals # E251 unexpected spaces around keyword / parameter equals
# E101 indentation contains mixed spaces and tabs # E101 indentation contains mixed spaces and tabs
# E126 continuation line over-indented for hanging indent # E126 continuation line over-indented for hanging indent
# W504 line break after binary operator # W504 line break after binary operator
ignore = W191,E128,E501,E251,E101,E126,W504 # E117 over-indented
ignore = W191,E128,E501,E251,E101,E126,W504,E117
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment