This commit is contained in:
Dave Halter
2019-04-05 16:25:45 +02:00
parent dfe7fba08e
commit a5686d6cda
2 changed files with 23 additions and 12 deletions

View File

@@ -1,2 +1,12 @@
[bdist_wheel]
universal=1
[flake8]
max-line-length = 100
ignore =
# do not use bare 'except'
E722,
# don't know why this was ever even an option, 1+1 should be possible.
E226,
# line break before binary operator
W503,