fixup help msg for --no-deps option

This commit is contained in:
telamonian 2024-07-26 12:26:36 -04:00
parent ded2428d8c
commit 1b2fb8f512

View File

@ -557,8 +557,9 @@ def install(
no_deps: Annotated[
Optional[bool],
typer.Option(
"--no-deps",
show_default=False,
help="Use new fast dependency installer",
help="Skip installing any Python dependencies",
),
] = False,
):
@ -586,8 +587,9 @@ def reinstall(
no_deps: Annotated[
Optional[bool],
typer.Option(
"--no-deps",
show_default=False,
help="Use new fast dependency installer",
help="Skip installing any Python dependencies",
),
] = False,
):