diff options
| author | Eric N. Vander Weele <ericvw@gmail.com> | 2019-10-12 22:50:46 +0100 |
|---|---|---|
| committer | Eric N. Vander Weele <ericvw@gmail.com> | 2019-10-13 13:37:19 -0400 |
| commit | 66f832d291faa6cf363546be19a625eda060475c (patch) | |
| tree | 41e7e637bd944f3dc66130a866bb2bf1a038f63b /src/flake8/api | |
| parent | 3f1bdc74a9193624f0420bc7213a11679b147361 (diff) | |
| download | flake8-66f832d291faa6cf363546be19a625eda060475c.tar.gz | |
application: Remove forwarding unused preliminary arguments
The `ConfigFileFinder` doesn't utilize the preliminary arguments (i.e.,
the file names) anymore for computing the starting path for the
configuration file search.
Diffstat (limited to 'src/flake8/api')
| -rw-r--r-- | src/flake8/api/legacy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flake8/api/legacy.py b/src/flake8/api/legacy.py index a620930..1056fe9 100644 --- a/src/flake8/api/legacy.py +++ b/src/flake8/api/legacy.py @@ -32,7 +32,7 @@ def get_style_guide(**kwargs): [] ) flake8.configure_logging(prelim_opts.verbose, prelim_opts.output_file) - application.make_config_finder(prelim_opts.append_config, prelim_args) + application.make_config_finder(prelim_opts.append_config) application.find_plugins(prelim_opts.config, prelim_opts.isolated) application.register_plugin_options() application.parse_configuration_and_cli([]) |
