diff options
-rw-r--r-- | examples/scripts/save_help_text.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/examples/scripts/save_help_text.py b/examples/scripts/save_help_text.py index d08463f2..d3c8a91e 100644 --- a/examples/scripts/save_help_text.py +++ b/examples/scripts/save_help_text.py @@ -37,9 +37,7 @@ def get_sub_commands(parser: argparse.ArgumentParser) -> List[str]: def add_help_to_file(command: str, outfile: TextIO) -> None: - """ - Write a header and help text for a command to the output file - """ + """Write a header and help text for a command to the output file""" header = '{}\nCOMMAND: {}\n{}\n'.format(ASTERISKS, command, ASTERISKS) outfile.write(header) |