]> git.phdru.name Git - mimedecode.git/commitdiff
Cleanup: Fix flake8 E402 module level import not at top of file
authorOleg Broytman <phd@phdru.name>
Sun, 15 Oct 2017 13:26:58 +0000 (16:26 +0300)
committerOleg Broytman <phd@phdru.name>
Sun, 15 Oct 2017 15:17:46 +0000 (18:17 +0300)
setup.py

index c68e4e07a3df5b32d0ada2208b05498b0c65a9cd..656d754fa3973f40e18062cd9e93f250a44c97bf 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -7,13 +7,13 @@ except ImportError:
     from distutils.core import setup
     is_setuptools = False
 
+from mimedecode_version import __version__, __copyright__, __license__
+
 kw = {}
 if is_setuptools:
     kw['install_requires'] = ['m_lib.defenc>=1.0']
     kw['tests_require'] = ['m_lib>=3.1']
 
-from mimedecode_version import __version__, __copyright__, __license__
-
 setup(
     name="mimedecode",
     version=__version__,