flake8: increase max complexity

This commit is contained in:
Florian Bruhin 2014-05-20 17:53:32 +02:00
parent 7c351caf77
commit ad9c1ed359
2 changed files with 2 additions and 2 deletions

View File

@ -7,5 +7,5 @@
# F821: undefined name
# F841: unused variable
ignore=E241,E265,F401,E501,F821,F841
max_complexity = 10
max_complexity = 11
exclude = ez_setup.py

View File

@ -64,7 +64,7 @@ options = {
'other': {
'pylint': ['--output-format=colorized', '--reports=no',
'--rcfile=.pylintrc'],
'flake8': ['--max-complexity=10', '--config=.flake8'],
'flake8': ['--config=.flake8'],
},
}