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

fix invalid escape warning when building docs #314

Merged
merged 3 commits into from
Feb 12, 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
3 changes: 2 additions & 1 deletion ragna/deploy/_cli/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import questionary
import rich
import typer
from rich.markup import escape
from rich.table import Table

import ragna
Expand Down Expand Up @@ -213,7 +214,7 @@ def _handle_unmet_requirements(components: Iterable[Type[Component]]) -> None:
f"$ pip install {' '.join(unmet_package_requirements)}\n\n"
f"Optionally, you can also install Ragna with all optional dependencies"
f"for the builtin components\n\n"
f"$ pip install 'ragna\[all]'"
f"$ pip install '{escape('ragna[all]')}"
)

unmet_env_var_requirements = sorted(
Expand Down
Loading