Ignore module imports not at top of file

In multiple places we need to set up import paths before importing
modules. This Flake8 warning is just noise.

Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
This commit is contained in:
Lubomír Sedlář 2016-08-22 10:53:57 +02:00
parent 76f3f909ec
commit 7fd5403495
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
[flake8]
exclude = doc/*,*.pyc,*.py~,*.in,*.spec,*.sh,*.rst,setup.py
filename = *.py
ignore = E501
ignore = E501,E402
[run]
omit = tests/*