Skip to content

Commit

Permalink
Fix help menu (#207)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyfowers authored Jul 31, 2024
1 parent abe694a commit ab54002
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/turnkeyml/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def main():
# Trick argparse into thinking tools was not a positional argument
# this helps to avoid an error where an incorrect arg/value pair
# can be misinterpreted as the tools positional argument
tools_action.option_strings = "--tools"
tools_action.option_strings = ["--tools"]

# Do one pass of parsing to figure out if -h was used
global_args = vars(parser.parse_args(tools_invoked["globals"]))
Expand Down

0 comments on commit ab54002

Please sign in to comment.