Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading