Skip to content

Commit 1af8f95

Browse files
r04922101davidism
authored andcommitted
fix super call in list comprehension
1 parent 3435d2f commit 1af8f95

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

CHANGES.rst

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ Version 3.0.2
44
Unreleased
55

66
- Correct type for ``jinja_loader`` property. :issue:`5388`
7+
- Fix error with ``--extra-files`` and ``--exclude-patterns`` CLI options.
8+
:issue:`5391`
79

810

911
Version 3.0.1

src/flask/cli.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -858,7 +858,9 @@ def convert(
858858
self, value: t.Any, param: click.Parameter | None, ctx: click.Context | None
859859
) -> t.Any:
860860
items = self.split_envvar_value(value)
861-
return [super().convert(item, param, ctx) for item in items]
861+
# can't call no-arg super() inside list comprehension until Python 3.12
862+
super_convert = super().convert
863+
return [super_convert(item, param, ctx) for item in items]
862864

863865

864866
@click.command("run", short_help="Run a development server.")

tests/test_cli.py

+5
Original file line numberDiff line numberDiff line change
@@ -679,3 +679,8 @@ def test_cli_empty(app):
679679

680680
result = app.test_cli_runner().invoke(args=["blue", "--help"])
681681
assert result.exit_code == 2, f"Unexpected success:\n\n{result.output}"
682+
683+
684+
def test_run_exclude_patterns():
685+
ctx = run_command.make_context("run", ["--exclude-patterns", __file__])
686+
assert ctx.params["exclude_patterns"] == [__file__]

0 commit comments

Comments
 (0)