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
5 changes: 0 additions & 5 deletions comfy_cli/cmdline.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ def entry(
bool | None,
typer.Option(
show_default=False,
is_flag=True,
help="Execute from recent path",
callback=g_exclusivity.validate,
),
Expand All @@ -85,7 +84,6 @@ def entry(
bool | None,
typer.Option(
show_default=False,
is_flag=True,
help="Execute from current path",
callback=g_exclusivity.validate,
),
Expand All @@ -94,7 +92,6 @@ def entry(
bool,
typer.Option(
show_default=False,
is_flag=True,
help="Do not prompt user for input, use default options",
),
] = False,
Expand All @@ -103,7 +100,6 @@ def entry(
typer.Option(
show_default=False,
hidden=True,
is_flag=True,
help="Enable tracking",
),
] = False,
Expand All @@ -112,7 +108,6 @@ def entry(
"--version",
"-v",
help="Print version and exit",
is_flag=True,
),
):
if version:
Expand Down
3 changes: 0 additions & 3 deletions comfy_cli/command/custom_nodes/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,19 +200,16 @@ def restore_snapshot(
pip_non_url: bool | None = typer.Option(
default=None,
show_default=False,
is_flag=True,
help="Restore for pip packages registered on PyPI.",
),
pip_non_local_url: bool | None = typer.Option(
default=None,
show_default=False,
is_flag=True,
help="Restore for pip packages registered at web URLs.",
),
pip_local_url: bool | None = typer.Option(
default=None,
show_default=False,
is_flag=True,
help="Restore for pip packages specified by local paths.",
),
):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ dependencies = [
"ruff",
"semver~=3.0.2",
"tomlkit",
"typer>=0.9",
"typer>=0.12.4",
"typing-extensions>=4.7",
"uv",
"websocket-client",
Expand Down