Skip to content

Commit

Permalink
docs: Add double-quotes to shiny[theme] (#1605)
Browse files Browse the repository at this point in the history
  • Loading branch information
randyzwitch authored Aug 1, 2024
1 parent a085c2e commit 4113a25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shiny/ui/_theme.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class Theme:
**Note: Compiling custom themes requires the
[libsass](https://pypi.org/project/libsass/) package**, which is not installed by
default with Shiny. Use `pip install libsass` or `pip install shiny[theme]` to
default with Shiny. Use `pip install libsass` or `pip install "shiny[theme]"` to
install it.
Customized themes are compiled to CSS when the theme is used. The `Theme` class
Expand Down Expand Up @@ -527,7 +527,7 @@ def check_libsass_installed() -> None:
if importlib.util.find_spec("sass") is None:
raise ImportError(
"The 'libsass' package is required to compile custom themes. "
"Please install it with `pip install libsass` or `pip install shiny[theme]`.",
'Please install it with `pip install libsass` or `pip install "shiny[theme]"`.',
)


Expand Down

0 comments on commit 4113a25

Please sign in to comment.