Skip to content

Commit

Permalink
Fix comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
robinjhuang committed Jul 18, 2024
1 parent f602660 commit 25654f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions comfy_cli/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ def prompt_select(
Args:
question (str): The question to display to the user.
choices (List[T]): A list of choices for the user to select from.
choices (List[ChoiceType]): A list of choices for the user to select from.
force_prompting (bool): Whether to force prompting even if skip_prompting is set.
Returns:
Optional[T]: The selected choice from the user, or None if skipping prompts.
Optional[ChoiceType]: The selected choice from the user, or None if skipping prompts.
"""
if workspace_manager.skip_prompting and not force_prompting:
return None
Expand Down

0 comments on commit 25654f3

Please sign in to comment.