Skip to content

Commit

Permalink
Updating geos ats command line parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
cssherman committed Mar 21, 2024
1 parent dccdc28 commit 6e4ce12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geos_ats_package/geos_ats/command_line_parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def parse_command_line_arguments( args ):
exit_flag = True

if exit_flag:
for option_type, details in zip( [ 'action', 'check' ], [ action_options, check_options ] ):
for option_type, details in ( 'action', action_options ), ( 'check', check_options ):
print( f'\nAvailable {option_type} options:' )
for k, v in details.items():
print( f' {k}: {v}' )
Expand Down

0 comments on commit 6e4ce12

Please sign in to comment.