Skip to content

Commit

Permalink
Fixed: types for skip_prompt & enable_telemetry. (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
robinjhuang authored Jul 18, 2024
1 parent c9c74a3 commit c79a1f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions comfy_cli/cmdline.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,15 +91,15 @@ def entry(
),
] = None,
skip_prompt: Annotated[
Optional[bool],
bool,
typer.Option(
show_default=False,
is_flag=True,
help="Do not prompt user for input, use default options",
),
] = None,
] = False,
enable_telemetry: Annotated[
Optional[bool],
bool,
typer.Option(
show_default=False,
hidden=True,
Expand Down

0 comments on commit c79a1f6

Please sign in to comment.