From 1b2fb8f512d1492040d5f1387b1ab94d84793a88 Mon Sep 17 00:00:00 2001 From: telamonian Date: Fri, 26 Jul 2024 12:26:36 -0400 Subject: [PATCH] fixup help msg for --no-deps option --- cm-cli.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/cm-cli.py b/cm-cli.py index 90478bef..3c11e6b6 100644 --- a/cm-cli.py +++ b/cm-cli.py @@ -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, ):