(self, help_command, **kwargs)
| 456 | pass |
| 457 | |
| 458 | def doc_description(self, help_command, **kwargs): |
| 459 | doc = help_command.doc |
| 460 | service_model = help_command.obj |
| 461 | doc.style.h2('Description') |
| 462 | # TODO: need a documentation attribute. |
| 463 | doc.include_doc_string(service_model.documentation) |
| 464 | |
| 465 | def doc_subitems_start(self, help_command, **kwargs): |
| 466 | doc = help_command.doc |
nothing calls this directly
no test coverage detected