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>2021-01-10 22:38:25 +0300
committerJon Turney <jon.turney@dronecode.org.uk>2021-01-10 22:38:25 +0300
commitc7759627578cc49d007f47982646b7e24a37ce95 (patch)
tree8a2214675f77e4fab121d8b9aad733ea009fd98c
parent560cb9179da8401888c9997d90b9db199754d4b8 (diff)
Ignore B902 flake
Ignore 'B902 blind except Exception: statement' flake. This isn't ideal. Three of these places are where we would otherwise have to enumerate all possible exceptions which could be raised during reading a compressed archive. The final place is were we are catching any possible exception to log before terminating, so really needs to be blind.
-rw-r--r--.flake82
1 files changed, 1 insertions, 1 deletions
diff --git a/.flake8 b/.flake8
index 81548f7..0baa6cd 100644
--- a/.flake8
+++ b/.flake8
@@ -1,3 +1,3 @@
[flake8]
-ignore=E741,E129,W504,A003
+ignore=E741,E129,W504,A003,B902
max-line-length=240