From 3010ab3fbd1dfbd2e163c60c8def5b6e092dedfc Mon Sep 17 00:00:00 2001 From: "Eric N. Vander Weele" Date: Sun, 12 Jan 2020 15:19:07 -0800 Subject: [PATCH] application: Remove stale docstring param for `.find_plugins()` The 'ignore_config_files' parameter was accidentally not removed in c918e72. --- src/flake8/main/application.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/flake8/main/application.py b/src/flake8/main/application.py index a30f195..6a59e1a 100644 --- a/src/flake8/main/application.py +++ b/src/flake8/main/application.py @@ -143,9 +143,6 @@ class Application(object): :param str config_file: The optional configuraiton file to override all other configuration files (i.e., the --config option). - :param bool ignore_config_files: - Determine whether to parse configuration files or not. (i.e., the - --isolated option). """ local_plugins = config.get_local_plugins(config_finder, config_file)