From f62236b1753da3a7fe330168f1cedc51427a2daa Mon Sep 17 00:00:00 2001 From: Yoland Y <4950057+yoland68@users.noreply.github.com> Date: Fri, 3 May 2024 10:01:55 -0700 Subject: [PATCH] Remove unused scaffold command --- comfy_cli/command/custom_nodes/command.py | 24 +++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/comfy_cli/command/custom_nodes/command.py b/comfy_cli/command/custom_nodes/command.py index a8a9dd5..a9316d5 100644 --- a/comfy_cli/command/custom_nodes/command.py +++ b/comfy_cli/command/custom_nodes/command.py @@ -426,15 +426,15 @@ def fix( # upload_file_to_signed_url(signed_url, zip_filename) -@app.command("init", help="Init scaffolding for custom node") -@tracking.track_command("node") -def scaffold(): - if os.path.exists("comfynode.toml"): - typer.echo("Warning: 'comfynode.toml' already exists. Will not overwrite.") - raise typer.Exit(code=1) - - typer.echo("Initializing metadata...") - initialize_project_config() - typer.echo( - "comfynode.toml created successfully. Defaults were filled in. Please check before publishing." - ) +# @app.command("init", help="Init scaffolding for custom node") +# @tracking.track_command("node") +# def scaffold(): +# if os.path.exists("comfynode.toml"): +# typer.echo("Warning: 'comfynode.toml' already exists. Will not overwrite.") +# raise typer.Exit(code=1) + +# typer.echo("Initializing metadata...") +# initialize_project_config() +# typer.echo( +# "comfynode.toml created successfully. Defaults were filled in. Please check before publishing." +# )