Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Add double-quotes to shiny[theme] #1605

Merged
merged 1 commit into from
Aug 1, 2024
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