Skip to content

Commit

Permalink
Use keyword arguments for cm-cli.
Browse files Browse the repository at this point in the history
  • Loading branch information
robinjhuang committed Feb 11, 2025
1 parent af06fd7 commit 820435c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions comfy_cli/command/custom_nodes/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ def install(
),
] = None,
fast_deps: Annotated[
Optional[bool],
bool,
typer.Option(
"--fast-deps",
show_default=False,
Expand Down Expand Up @@ -649,7 +649,7 @@ def install_deps(
execute_cm_cli(
["deps-in-workflow", "--workflow", workflow, "--output", tmp_path],
channel,
mode,
mode=mode,
)

deps_file = tmp_path
Expand Down Expand Up @@ -689,7 +689,7 @@ def deps_in_workflow(
execute_cm_cli(
["deps-in-workflow", "--workflow", workflow, "--output", output],
channel,
mode,
mode=mode,
)


Expand Down

0 comments on commit 820435c

Please sign in to comment.