ci: add C901 to flake8's `extend-ignore` list

Issue #1076 has been created to track the task of resolving C901 errors
and removing C901 from the ignore list.
This commit is contained in:
Mike Salvatore 2021-04-05 14:44:42 -04:00
parent c1929c2bd3
commit 07afa27ec1
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ max-complexity = 10
max-line-length = 100
### ignore "whitespace before ':'" and "line break before binary operator" for compatibility with black
extend-ignore = E203, W503
extend-ignore = E203, W503, C901
### --statistics Count the number of occurrences of each error/warning code and print a report.
statistics = True