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 4908daf commit a7be308Copy full SHA for a7be308
1 file changed
typer/main.py
@@ -1392,7 +1392,9 @@ def get_command_name(name: str) -> str:
1392
1393
def get_params_convertors_ctx_param_name_from_function(
1394
callback: Callable[..., Any] | None,
1395
-) -> tuple[list[click.Argument | click.Option | click.Parameter], dict[str, Any], str | None]:
+) -> tuple[
1396
+ list[click.Argument | click.Option | click.Parameter], dict[str, Any], str | None
1397
+]:
1398
# NOTE: this function does NOT generate click.Parameters, but needs to allow them to be added to the list later
1399
params: list[click.Argument | click.Option | click.Parameter] = []
1400
convertors = {}
0 commit comments