diff options
| author | Florent Xicluna <florent.xicluna@gmail.com> | 2013-02-13 19:19:30 +0100 |
|---|---|---|
| committer | Florent Xicluna <florent.xicluna@gmail.com> | 2013-02-13 19:19:30 +0100 |
| commit | 3ee195a8baf68f716df73ae6523bb490256101ae (patch) | |
| tree | 58ff27da46c8441a3a6262af6ff1f9260ddce321 | |
| parent | 20b8c5962ece6143c85fe9ba959fb6cd6ae843a5 (diff) | |
| download | flake8-3ee195a8baf68f716df73ae6523bb490256101ae.tar.gz | |
Fix imports in flake8.run
| -rw-r--r-- | flake8/run.py | 5 |
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__': |
