Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
dpower4 committed Nov 21, 2024
1 parent 8bbe326 commit 50452ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions superbench/benchmarks/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ def get_configurable_settings(self):
"""
message = self._parser.format_help().strip()
# Ensure consistent header across diff python argparse format_help output.
if "options:" in message:
message = message.replace("options:", "optional arguments:")
if 'options:' in message:
message = message.replace('options:', 'optional arguments:')
return message

def parse_args(self, ignore_invalid=False):
Expand Down

0 comments on commit 50452ef

Please sign in to comment.