From 80e05866fc4d39f722c7cdb0932391018a9d20ad Mon Sep 17 00:00:00 2001 From: "Eric N. Vander Weele" Date: Fri, 1 Nov 2019 21:26:12 -0400 Subject: [PATCH] Reformat with black >= 19.10b0 This resets the `black` formatting baseline so it doesn't get picked up in future commits. --- src/flake8/api/legacy.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/flake8/api/legacy.py b/src/flake8/api/legacy.py index e530088..dff40a6 100644 --- a/src/flake8/api/legacy.py +++ b/src/flake8/api/legacy.py @@ -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)