diff options
| author | Ian Cordasco <graffatcolmingov@gmail.com> | 2016-03-14 21:38:56 -0500 |
|---|---|---|
| committer | Ian Cordasco <graffatcolmingov@gmail.com> | 2016-03-14 21:38:56 -0500 |
| commit | 07b9ffbeb9a9e68ce9376f56595ece772ee628cf (patch) | |
| tree | a98285864e36d5b71c7feadb1b2f23dd0e14263c /flake8/main/cli.py | |
| parent | d222fcb9e118bec3b051355d12da0f6aa9cce163 (diff) | |
| download | flake8-07b9ffbeb9a9e68ce9376f56595ece772ee628cf.tar.gz | |
Add naive multiprocessing support
Diffstat (limited to 'flake8/main/cli.py')
| -rw-r--r-- | flake8/main/cli.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/flake8/main/cli.py b/flake8/main/cli.py index aa4f9a7..0dfd19a 100644 --- a/flake8/main/cli.py +++ b/flake8/main/cli.py @@ -254,7 +254,6 @@ class Application(object): arguments=self.args, checker_plugins=self.check_plugins, ) - self.file_checker_manager.make_checkers() def run(self, argv=None): # type: (Union[NoneType, List[str]]) -> NoneType @@ -266,7 +265,9 @@ class Application(object): self.make_notifier() self.make_guide() self.make_file_checker_manager() + self.file_checker_manager.start() self.file_checker_manager.run() + self.file_checker_manager.stop() def main(argv=None): |
