diff options
| author | Anthony Sottile <asottile@umich.edu> | 2019-11-02 15:27:15 +0000 |
|---|---|---|
| committer | Anthony Sottile <asottile@umich.edu> | 2019-11-02 15:27:15 +0000 |
| commit | b5157e194d89051f39826d28260f1997ec412908 (patch) | |
| tree | f5e8442230a1502ac1d5e63dd9b59041100c934a /src/flake8 | |
| parent | b14d47b3561faa0e37b1f8f36c322c0508f2c21a (diff) | |
| parent | 80e05866fc4d39f722c7cdb0932391018a9d20ad (diff) | |
| download | flake8-b5157e194d89051f39826d28260f1997ec412908.tar.gz | |
Merge branch 'black-19.10b0-reformat' into 'master'
Reformat with black >= 19.10b0
See merge request pycqa/flake8!372
Diffstat (limited to 'src/flake8')
| -rw-r--r-- | src/flake8/api/legacy.py | 7 |
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) |
