Skip to content

Commit

Permalink
Fix var name
Browse files Browse the repository at this point in the history
  • Loading branch information
falvaradorodriguez committed Jun 12, 2024
1 parent b062113 commit 95a5e07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/safe_cli/prompt_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -564,8 +564,8 @@ def terminate_cli(args):
)

# List all command options
parser_exit = subparsers.add_parser("help")
parser_exit.set_defaults(func=list_commands)
parser_help = subparsers.add_parser("help")
parser_help.set_defaults(func=list_commands)

# Terminate safe cli
parser_exit = subparsers.add_parser("exit")
Expand Down

0 comments on commit 95a5e07

Please sign in to comment.