Remove trailing period from description
(desc)
| 93 | terminal_width = 80 |
| 94 | |
| 95 | def clean_description(desc): |
| 96 | """Remove trailing period from description""" |
| 97 | if desc and desc.endswith('.'): |
| 98 | return desc[:-1] |
| 99 | return desc |
| 100 | |
| 101 | # Collect all commands from all sources |
| 102 | all_commands = {} |
no outgoing calls
no test coverage detected