()
| 270 | |
| 271 | |
| 272 | def main(): |
| 273 | help, commands = create_help() |
| 274 | help = patch_help(help, commands) |
| 275 | help = ( |
| 276 | ".. NOTE: This file is auto-generated by docs/generate_cli_docs.py and should not be modified.\n" |
| 277 | + help |
| 278 | ) |
| 279 | with open("docs/cli.rst", "wb") as f: |
| 280 | f.write(help.encode()) |
| 281 | |
| 282 | |
| 283 | if __name__ == "__main__": |
no test coverage detected