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 59b160c commit 888dbdaCopy full SHA for 888dbda
src/huggingface_hub/cli/_cli_utils.py
@@ -58,9 +58,12 @@ def typer_factory(help: str) -> typer.Typer:
58
return typer.Typer(
59
help=help,
60
add_completion=True,
61
- rich_markup_mode=None,
62
no_args_is_help=True,
63
cls=AlphabeticalMixedGroup,
+ # Disable rich completely for consistent experience
64
+ rich_markup_mode=None,
65
+ rich_help_panel=None,
66
+ pretty_exceptions_enable=False,
67
)
68
69
0 commit comments