Code formatting

This commit is contained in:
jpk 2023-12-08 14:37:56 +01:00
parent 6abe651e76
commit cd4ae5846a
1 changed files with 2 additions and 1 deletions

View File

@ -54,7 +54,8 @@ def generate_usage_md(script: str, version: str):
module_name = module_name.split(".")[0]
print(
f"# {module_name.capitalize()} v{version} - {script_name} - Command Usage Overview", file=fd
f"# {module_name.capitalize()} v{version} - {script_name} - Command Usage Overview",
file=fd,
)
for command in iter_commands(script_name, [], cli):
print(command, file=fd)