flake8: Ignore E402.

This commit is contained in:
Florian Bruhin 2015-02-08 21:56:52 +01:00
parent 1c055a25b6
commit be48f3c875

View File

@ -5,5 +5,6 @@
# E501: Line too long
# F841: unused variable
# F401: Unused import
ignore=E265,E501,F841,F401
# E402: module level import not at top of file
ignore=E265,E501,F841,F401,E402
max_complexity = 12