ci: add comment about what flake8 C901 warnings are

This commit is contained in:
Mike Salvatore 2021-04-06 06:59:03 -04:00
parent 46be7ae0d4
commit b94568f976
1 changed files with 2 additions and 1 deletions

View File

@ -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.