Skip to content

Commit

Permalink
Sorted parser arguments. [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
lohedges committed Nov 1, 2024
1 parent a28c4bb commit e681e58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/somd2/config/_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -1455,7 +1455,7 @@ def _create_parser(cls):
)

# Add the parameters.
for param in params:
for param in sorted(params):
# Convert underscores to hyphens for the command line.
cli_param = param.replace("_", "-")

Expand Down

0 comments on commit e681e58

Please sign in to comment.