| 684 | doc.style.new_paragraph() |
| 685 | |
| 686 | def doc_output(self, help_command, event_name, **kwargs): |
| 687 | doc = help_command.doc |
| 688 | doc.style.h2('Output') |
| 689 | operation_model = help_command.obj |
| 690 | output_shape = operation_model.output_shape |
| 691 | if output_shape is None or not output_shape.members: |
| 692 | doc.write('None') |
| 693 | else: |
| 694 | for member_name, member_shape in output_shape.members.items(): |
| 695 | self._doc_member(doc, member_name, member_shape, stack=[]) |
| 696 | |
| 697 | def doc_meta_description(self, help_command, **kwargs): |
| 698 | doc = help_command.doc |