Better flake8 configuration

This commit is contained in:
Dave Halter
2018-07-24 00:50:31 +02:00
parent 18f26a0c04
commit f72f3f3797

View File

@@ -6,3 +6,7 @@ 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,