From a57b7c558db331c4a022c609bacba77f75df8046 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sun, 15 Oct 2017 16:26:58 +0300 Subject: [PATCH] Cleanup: Fix flake8 E402 module level import not at top of file --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index c68e4e0..656d754 100755 --- 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__, -- 2.39.2