Reformat with black >= 19.10b0

This resets the `black` formatting baseline so it doesn't get picked up
in future commits.
This commit is contained in:
Eric N. Vander Weele 2019-11-01 21:26:12 -04:00
parent b14d47b356
commit 80e05866fc

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)