From e831d07a7f8c01a22b10d67f716a94c9ec456cd2 Mon Sep 17 00:00:00 2001 From: Arthur de Jong Date: Mon, 9 May 2022 22:41:48 +0200 Subject: Ignore flake8 complaining about print statements It seems that flake8 now uses T201 instead of T001 for this check. --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3