python fix lint warnings

flake8 started to report warnings like this:
test/zdtm.py:1337:6: W605 invalid escape sequence '\S'

Signed-off-by: Andrei Vagin <avagin@gmail.com>
This commit is contained in:
Andrei Vagin 2018-10-28 01:44:57 +03:00
parent ae6839194a
commit eccdf07ae3
2 changed files with 5 additions and 4 deletions

View file

@ -5,4 +5,5 @@
# E251 unexpected spaces around keyword / parameter equals
# E101 indentation contains mixed spaces and tabs
# E126 continuation line over-indented for hanging indent
ignore = W191,E128,E501,E251,E101,E126
# W504 line break after binary operator
ignore = W191,E128,E501,E251,E101,E126,W504