Skip to content

Commit

Permalink
Print supported actions as a tuple
Browse files Browse the repository at this point in the history
  • Loading branch information
jpeimer committed Oct 10, 2024
1 parent c841dc1 commit bd90b3f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,9 @@ def main(

supported_actions = actions_dict.keys()
if action_name not in supported_actions:
CONSOLE.print(f"Action '{action_name}' is not supported, please use a supported action {supported_actions}")
CONSOLE.print(
f"Action '{action_name}' is not supported, please use a supported action {tuple(supported_actions)}"
)
continue

if action_name == "exit":
Expand Down

0 comments on commit bd90b3f

Please sign in to comment.