mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-29 18:46:52 +00:00
Merge branch 'application-argv-required-for-parsing' into 'master'
application: Make 'parse_configuration_and_cli' parameter required See merge request pycqa/flake8!375
This commit is contained in:
commit
ff871fe656
1 changed files with 2 additions and 2 deletions
|
|
@ -189,8 +189,8 @@ class Application(object):
|
|||
self.check_plugins.register_plugin_versions(self.option_manager)
|
||||
self.formatting_plugins.register_options(self.option_manager)
|
||||
|
||||
def parse_configuration_and_cli(self, argv=None):
|
||||
# type: (Optional[List[str]]) -> None
|
||||
def parse_configuration_and_cli(self, argv):
|
||||
# type: (List[str]) -> None
|
||||
"""Parse configuration files and the CLI options.
|
||||
|
||||
:param list argv:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue