(self, help_command, **kwargs)
| 134 | doc.style.new_paragraph() |
| 135 | |
| 136 | def doc_synopsis_start(self, help_command, **kwargs): |
| 137 | self._documented_arg_groups = [] |
| 138 | doc = help_command.doc |
| 139 | doc.style.h2('Synopsis') |
| 140 | doc.style.start_codeblock() |
| 141 | doc.writeln(f'{help_command.name}') |
| 142 | |
| 143 | def doc_synopsis_option(self, arg_name, help_command, **kwargs): |
| 144 | doc = help_command.doc |
nothing calls this directly
no test coverage detected