(self, help_command, **kwargs)
| 429 | self.doc = help_command.doc |
| 430 | |
| 431 | def doc_description(self, help_command, **kwargs): |
| 432 | self.doc.style.h2('Description') |
| 433 | self.doc.write(help_command.description) |
| 434 | self.doc.style.new_paragraph() |
| 435 | |
| 436 | def doc_synopsis_start(self, help_command, **kwargs): |
| 437 | if not help_command.synopsis: |
nothing calls this directly
no test coverage detected