summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric N. Vander Weele <ericvw@gmail.com>2019-11-01 21:26:12 -0400
committerEric N. Vander Weele <ericvw@gmail.com>2019-11-01 21:26:12 -0400
commit80e05866fc4d39f722c7cdb0932391018a9d20ad (patch)
treef5e8442230a1502ac1d5e63dd9b59041100c934a
parentb14d47b3561faa0e37b1f8f36c322c0508f2c21a (diff)
downloadflake8-80e05866fc4d39f722c7cdb0932391018a9d20ad.tar.gz
Reformat with black >= 19.10b0
This resets the `black` formatting baseline so it doesn't get picked up in future commits.
-rw-r--r--src/flake8/api/legacy.py7
1 files 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)