We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d0701f commit 43adce1Copy full SHA for 43adce1
pyproject.toml
@@ -36,7 +36,7 @@ dependencies = [
36
dynamic = ["version"]
37
38
[project.optional-dependencies]
39
-cli = ["click==8.1.*", "chardet"]
+cli = ["click>=8.2", "chardet"]
40
41
[project.urls]
42
Documentation = "https://github.com/code42/incydr_python#readme"
src/_incydr_cli/rich_utils.py
@@ -350,7 +350,7 @@ def _print_options_panel(
350
351
# Column for a metavar, if we have one
352
metavar = Text(style=STYLE_METAVAR, overflow="fold")
353
- metavar_str = param.make_metavar()
+ metavar_str = param.make_metavar(ctx=ctx)
354
355
# Do it ourselves if this is a positional argument
356
if (
0 commit comments