Set maximum line length for Python style checker (#552)

This commit is contained in:
Dean Moldovan
2016-12-13 00:59:28 +01:00
committed by Wenzel Jakob
parent de2c6df200
commit 76e993a3f4
8 changed files with 40 additions and 19 deletions

View File

@@ -2,10 +2,9 @@
universal=1
[flake8]
max-line-length = 99
show_source = True
exclude = .git, __pycache__, build, dist, docs, tools, venv
ignore =
# line too long
E501,
# required for pretty matrix formating: multiple spaces after `,` and `[`
E201, E241