Merge branch 'black-19.10b0-reformat' into 'master'

Reformat with black >= 19.10b0

See merge request pycqa/flake8!372
This commit is contained in:
Anthony Sottile 2019-11-02 15:27:15 +00:00
commit b5157e194d

View file

@ -28,9 +28,10 @@ def get_style_guide(**kwargs):
:class:`StyleGuide`
"""
application = app.Application()
prelim_opts, remaining_args = application.parse_preliminary_options_and_args( # noqa: E501
[]
)
(
prelim_opts,
remaining_args,
) = application.parse_preliminary_options_and_args([])
flake8.configure_logging(prelim_opts.verbose, prelim_opts.output_file)
application.make_config_finder(prelim_opts.append_config)
application.find_plugins(prelim_opts.config, prelim_opts.isolated)