Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArthur de Jong <arthur@arthurdejong.org>2022-05-09 22:41:48 +0200
committerArthur de Jong <arthur@arthurdejong.org>2022-05-09 22:42:54 +0200
commite831d07a7f8c01a22b10d67f716a94c9ec456cd2 (patch)
treefa4243695a8d4a4d8ba45c0f435f2c6ae925842f
parent7d81eac6f26ba0b4abbc6ddc9593ffec6d2ffd47 (diff)
Ignore flake8 complaining about print statements
It seems that flake8 now uses T201 instead of T001 for this check.
-rw-r--r--setup.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index da1f59a..ab00d3f 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -37,7 +37,7 @@ ignore =
F403,F405 # we use * imports
Q001 # we use '''...''' multi-line strings
Q003 # don't force "" strings to avoid escaping quotes
- T001 # we use print statements in the update scripts
+ T001,T201 # we use print statements in the update scripts
W504 # we put the binary operator on the preceding line
max-complexity = 15
max-line-length = 120