From b94568f976fbd194b0b6005921bcb1b49e5b0bb4 Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Tue, 6 Apr 2021 06:59:03 -0400 Subject: [PATCH] ci: add comment about what flake8 C901 warnings are --- .flake8 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.flake8 b/.flake8 index 4c673215a..4bf127114 100644 --- a/.flake8 +++ b/.flake8 @@ -6,7 +6,8 @@ show-source = True max-complexity = 10 max-line-length = 100 -### ignore "whitespace before ':'" and "line break before binary operator" for compatibility with black +### ignore "whitespace before ':'", "line break before binary operator" for +### compatibility with black, and cyclomatic complexity (for now). extend-ignore = E203, W503, C901 ### --statistics Count the number of occurrences of each error/warning code and print a report.