Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/.flake8
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-12-31 16:08:27 +0100
committerAnton Hvornum <anton@hvornum.se>2021-12-31 16:08:27 +0100
commitffa29e2cd4e082b1b124b44e525863c76d86eb0b (patch)
tree4fa6b00ac70bcc7a8f5572f1771815de77d34dcd /.flake8
parentec4feade613990537b94e4b090317a1093c4683c (diff)
Ignoring complex-functions in guided.py (couldn't find a way to specifically ignore C901 for ask_user_questions() alone)
Diffstat (limited to '.flake8')
-rw-r--r--.flake82
1 files changed, 1 insertions, 1 deletions
diff --git a/.flake8 b/.flake8
index 75990383..4ca1e031 100644
--- a/.flake8
+++ b/.flake8
@@ -6,4 +6,4 @@ max-complexity = 40
max-line-length = 236
show-source = True
statistics = True
-per-file-ignores = __init__.py:F401,F403,F405 simple_menu.py:C901,W503
+per-file-ignores = __init__.py:F401,F403,F405 simple_menu.py:C901,W503 guided.py:C901 \ No newline at end of file