We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0aba28 commit 6233289Copy full SHA for 6233289
tests/test_others.py
@@ -262,7 +262,7 @@ def test_multiple_options_separator_1_unsupported_separator():
262
app = typer.Typer()
263
264
@app.command()
265
- def main(names: list[str] = typer.Option(..., multiple_separator="\t \n")):
+ def main(names: typing.List[str] = typer.Option(..., multiple_separator="\t \n")):
266
print("Hello World")
267
268
with pytest.raises(typer.UnsupportedMultipleSeparatorError) as exc_info:
0 commit comments