File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ def _inner(*args, **kwargs):
4646 if not _inquirer_py_available :
4747 raise ImportError (
4848 "The 'cache delete' command requires extra dependencies for the TUI.\n "
49- "Please run 'pip install huggingface_hub[cli]' to install them.\n "
49+ "Please run 'pip install \" huggingface_hub[cli]\" ' to install them.\n "
5050 "Otherwise, disable TUI using the '--disable-tui' flag."
5151 )
5252 return fn (* args , ** kwargs )
Original file line number Diff line number Diff line change 2222
2323NOTE:
2424 This command is based on `InquirerPy` to build the multiselect menu in the terminal.
25- This dependency has to be installed with `pip install huggingface_hub[cli]`. Since
25+ This dependency has to be installed with `pip install " huggingface_hub[cli]" `. Since
2626 we want to avoid as much as possible cross-platform issues, I chose a library that
2727 is built on top of `python-prompt-toolkit` which seems to be a reference in terminal
2828 GUI (actively maintained on both Unix and Windows, 7.9k stars).
@@ -88,7 +88,7 @@ def _inner(*args, **kwargs):
8888 if not _inquirer_py_available :
8989 raise ImportError (
9090 "The `delete-cache` command requires extra dependencies to work with"
91- " the TUI.\n Please run `pip install huggingface_hub[cli]` to install"
91+ ' the TUI.\n Please run `pip install " huggingface_hub[cli]" ` to install'
9292 " them.\n Otherwise, disable TUI using the `--disable-tui` flag."
9393 )
9494
You can’t perform that action at this time.
0 commit comments