summaryrefslogtreecommitdiff
path: root/flake8
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2013-02-13 19:19:30 +0100
committerFlorent Xicluna <florent.xicluna@gmail.com>2013-02-13 19:19:30 +0100
commit3ee195a8baf68f716df73ae6523bb490256101ae (patch)
tree58ff27da46c8441a3a6262af6ff1f9260ddce321 /flake8
parent20b8c5962ece6143c85fe9ba959fb6cd6ae843a5 (diff)
downloadflake8-3ee195a8baf68f716df73ae6523bb490256101ae.tar.gz
Fix imports in flake8.run
Diffstat (limited to 'flake8')
-rw-r--r--flake8/run.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/flake8/run.py b/flake8/run.py
index e574c39..aca929e 100644
--- a/flake8/run.py
+++ b/flake8/run.py
@@ -2,10 +2,9 @@
"""
Implementation of the command-line I{flake8} tool.
"""
-from flake8.hooks import git_hook, hg_hook # noqa
+from flake8.hooks import git_hook, hg_hook # noqa
+from flake8.main import check_code, check_file, Flake8Command # noqa
from flake8.main import main
-from flake8.main import (check_code, check_file, get_parser, # noqa
- Flake8Command) # noqa
if __name__ == '__main__':