diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2022-05-09 22:41:48 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2022-05-09 22:42:54 +0200 |
commit | e831d07a7f8c01a22b10d67f716a94c9ec456cd2 (patch) | |
tree | fa4243695a8d4a4d8ba45c0f435f2c6ae925842f | |
parent | 7d81eac6f26ba0b4abbc6ddc9593ffec6d2ffd47 (diff) |
Ignore flake8 complaining about print statements
It seems that flake8 now uses T201 instead of T001 for this check.
-rw-r--r-- | setup.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |