Skip to content

Commit

Permalink
feat: model remove cmd1
Browse files Browse the repository at this point in the history
Signed-off-by: reidliu <[email protected]>
  • Loading branch information
reidliu committed Feb 16, 2025
1 parent 45bc3b5 commit 62248cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions llama_stack/cli/model/remove.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@

def _ask_for_confirm(model) -> bool:
input_text = input(f"Are you sure you want to remove {model}? (y/n): ").strip().lower()
if input_text == 'y':
if input_text == "y":
return True
elif input_text == 'n':
elif input_text == "n":
return False
return False

Expand Down

0 comments on commit 62248cd

Please sign in to comment.