From: Oleg Broytman Date: Sat, 23 Jul 2016 00:17:00 +0000 (+0300) Subject: Fix flake8 warning X-Git-Tag: 0.0.1~61 X-Git-Url: https://git.phdru.name/?p=sqlconvert.git;a=commitdiff_plain;h=bde5b24d1ce485fb9654f69f14ffcb1ed8516a4f Fix flake8 warning Fix E402 module level import not at top of file. --- diff --git a/setup.py b/setup.py index aeb64e7..d6936d2 100755 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ except ImportError: versionpath = join(abspath(dirname(__file__)), 'mysql2sql', '__version__.py') load_source('mysql2sql_version', versionpath) -from mysql2sql_version import __version__ +from mysql2sql_version import __version__ # noqa setup(name='mysql2sql', version=__version__,