Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion comfy_cli/cmdline.py
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ def install(
def update(
target: str = typer.Argument(
"comfy",
help="[all|comfy|cli]",
help="\\[all|comfy|cli]",
autocompletion=utils.create_choice_completer(["all", "comfy", "cli"]),
),
):
Expand Down
30 changes: 15 additions & 15 deletions comfy_cli/command/custom_nodes/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ def show(
] = None,
mode: str = typer.Option(
None,
help="[remote|local|cache]",
help="\\[remote|local|cache]",
autocompletion=mode_completer,
),
):
Expand All @@ -540,7 +540,7 @@ def simple_show(
] = None,
mode: str = typer.Option(
None,
help="[remote|local|cache]",
help="\\[remote|local|cache]",
autocompletion=mode_completer,
),
):
Expand Down Expand Up @@ -595,7 +595,7 @@ def install(
] = False,
mode: str = typer.Option(
None,
help="[remote|local|cache]",
help="\\[remote|local|cache]",
autocompletion=mode_completer,
),
):
Expand Down Expand Up @@ -664,7 +664,7 @@ def reinstall(
] = None,
mode: str = typer.Option(
None,
help="[remote|local|cache]",
help="\\[remote|local|cache]",
autocompletion=mode_completer,
),
):
Expand Down Expand Up @@ -709,7 +709,7 @@ def uninstall(
] = None,
mode: str = typer.Option(
None,
help="[remote|local|cache]",
help="\\[remote|local|cache]",
autocompletion=mode_completer,
),
):
Expand Down Expand Up @@ -748,7 +748,7 @@ def update_node_id_cache():
def update(
nodes: list[str] = typer.Argument(
...,
help="[all|List of custom nodes to update]",
help="\\[all|List of custom nodes to update]",
autocompletion=node_or_all_completer,
),
channel: Annotated[
Expand All @@ -769,7 +769,7 @@ def update(
] = None,
mode: str = typer.Option(
None,
help="[remote|local|cache]",
help="\\[remote|local|cache]",
autocompletion=mode_completer,
),
):
Expand All @@ -785,7 +785,7 @@ def update(
def disable(
nodes: list[str] = typer.Argument(
...,
help="[all|List of custom nodes to disable]",
help="\\[all|List of custom nodes to disable]",
autocompletion=node_or_all_completer,
),
channel: Annotated[
Expand All @@ -798,7 +798,7 @@ def disable(
] = None,
mode: str = typer.Option(
None,
help="[remote|local|cache]",
help="\\[remote|local|cache]",
autocompletion=mode_completer,
),
):
Expand All @@ -812,7 +812,7 @@ def disable(
def enable(
nodes: list[str] = typer.Argument(
...,
help="[all|List of custom nodes to enable]",
help="\\[all|List of custom nodes to enable]",
autocompletion=node_or_all_completer,
),
channel: Annotated[
Expand All @@ -825,7 +825,7 @@ def enable(
] = None,
mode: str = typer.Option(
None,
help="[remote|local|cache]",
help="\\[remote|local|cache]",
autocompletion=mode_completer,
),
):
Expand All @@ -839,7 +839,7 @@ def enable(
def fix(
nodes: list[str] = typer.Argument(
...,
help="[all|List of custom nodes to fix]",
help="\\[all|List of custom nodes to fix]",
autocompletion=node_or_all_completer,
),
channel: Annotated[
Expand All @@ -860,7 +860,7 @@ def fix(
] = None,
mode: str = typer.Option(
None,
help="[remote|local|cache]",
help="\\[remote|local|cache]",
autocompletion=mode_completer,
),
):
Expand Down Expand Up @@ -901,7 +901,7 @@ def install_deps(
] = None,
mode: str = typer.Option(
None,
help="[remote|local|cache]",
help="\\[remote|local|cache]",
autocompletion=mode_completer,
),
):
Expand Down Expand Up @@ -951,7 +951,7 @@ def deps_in_workflow(
] = None,
mode: str = typer.Option(
None,
help="[remote|local|cache]",
help="\\[remote|local|cache]",
autocompletion=mode_completer,
),
):
Expand Down
Loading