Correct flake8 code

This commit is contained in:
Florian Bruhin 2014-04-22 17:55:54 +02:00
parent 55e3aca702
commit 51489ab538

View File

@ -3,7 +3,7 @@
# E265: Block comment should start with '#' # E265: Block comment should start with '#'
# F401: Unused import (checked by pylint) # F401: Unused import (checked by pylint)
# E501: Line too long (checked by pylint) # E501: Line too long (checked by pylint)
# E821: undefined name (checked by pylint) # F821: undefined name (checked by pylint)
ignore=E241,E265,F401,E501,E821 ignore=E241,E265,F401,E501,F821
max_complexity = 10 max_complexity = 10
exclude = appdirs.py exclude = appdirs.py