From f72f3f379783514f4f7b1c7edc2f58d41ff238ae Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Tue, 24 Jul 2018 00:50:31 +0200 Subject: [PATCH] Better flake8 configuration --- setup.cfg | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.cfg b/setup.cfg index 96111b23..1295389f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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,