Helper method to get formatted help page for the current context and command.
(self)
| 829 | return self.command.get_usage(self) |
| 830 | |
| 831 | def get_help(self) -> str: |
| 832 | """Helper method to get formatted help page for the current |
| 833 | context and command. |
| 834 | """ |
| 835 | return self.command.get_help(self) |
| 836 | |
| 837 | def _make_sub_context(self, command: Command) -> Context: |
| 838 | """Create a new context of the same type as this context, but |