Skip to content

Commit

Permalink
fix invalid escape warning when building docs (#314)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmeier authored Feb 12, 2024
1 parent dc39e01 commit 5f42831
Showing 1 changed file with 2 additions and 1 deletion.
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

0 comments on commit 5f42831

Please sign in to comment.