Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/cygwin-apps/calm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2022-05-08 18:35:32 +0300
committerJon Turney <jon.turney@dronecode.org.uk>2022-05-08 18:37:43 +0300
commit4c554b96f2d31b4b89286737da216a40300fc68e (patch)
treea46ad0f3a91e9b1ebc4a9cfbb97894eefaa9c0ef /.flake8
parent417126bee6afcf6f5f3110d7fa8f7d5c5316c8fa (diff)
Ignore flake8-bugbear B020
Ignore flake8-bugbear B020, since it false-positives on any for loop on an itererable using a lambda.
Diffstat (limited to '.flake8')
-rw-r--r--.flake82
1 files changed, 1 insertions, 1 deletions
diff --git a/.flake8 b/.flake8
index 0baa6cd..0da33f9 100644
--- a/.flake8
+++ b/.flake8
@@ -1,3 +1,3 @@
[flake8]
-ignore=E741,E129,W504,A003,B902
+ignore=E741,E129,W504,A003,B020,B902
max-line-length=240