Skip to content

Commit cd8b4eb

Browse files
authored
Use keyword arguments for cm-cli. (#241)
* Remove standalone tests. * Remove. * Fix return code for comfy launch. * Use comfy launch. * Fix tests for mac. * Use keyword arguments for cm-cli.
1 parent c350363 commit cd8b4eb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

comfy_cli/command/custom_nodes/command.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ def install(
394394
),
395395
] = None,
396396
fast_deps: Annotated[
397-
Optional[bool],
397+
bool,
398398
typer.Option(
399399
"--fast-deps",
400400
show_default=False,
@@ -651,7 +651,7 @@ def install_deps(
651651
execute_cm_cli(
652652
["deps-in-workflow", "--workflow", workflow, "--output", tmp_path],
653653
channel,
654-
mode,
654+
mode=mode,
655655
)
656656

657657
deps_file = tmp_path
@@ -691,7 +691,7 @@ def deps_in_workflow(
691691
execute_cm_cli(
692692
["deps-in-workflow", "--workflow", workflow, "--output", output],
693693
channel,
694-
mode,
694+
mode=mode,
695695
)
696696

697697

0 commit comments

Comments
 (0)