From 3ee195a8baf68f716df73ae6523bb490256101ae Mon Sep 17 00:00:00 2001 From: Florent Xicluna Date: Wed, 13 Feb 2013 19:19:30 +0100 Subject: [PATCH] Fix imports in flake8.run --- flake8/run.py | 5 ++--- 1 file 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__':