Skip to content

Commit 4113a25

Browse files
authored
docs: Add double-quotes to shiny[theme] (#1605)
1 parent a085c2e commit 4113a25

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

shiny/ui/_theme.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class Theme:
5656
5757
**Note: Compiling custom themes requires the
5858
[libsass](https://pypi.org/project/libsass/) package**, which is not installed by
59-
default with Shiny. Use `pip install libsass` or `pip install shiny[theme]` to
59+
default with Shiny. Use `pip install libsass` or `pip install "shiny[theme]"` to
6060
install it.
6161
6262
Customized themes are compiled to CSS when the theme is used. The `Theme` class
@@ -527,7 +527,7 @@ def check_libsass_installed() -> None:
527527
if importlib.util.find_spec("sass") is None:
528528
raise ImportError(
529529
"The 'libsass' package is required to compile custom themes. "
530-
"Please install it with `pip install libsass` or `pip install shiny[theme]`.",
530+
'Please install it with `pip install libsass` or `pip install "shiny[theme]"`.',
531531
)
532532

533533

0 commit comments

Comments
 (0)