(self, ctx: Context, formatter: HelpFormatter)
| 1888 | return rv |
| 1889 | |
| 1890 | def format_options(self, ctx: Context, formatter: HelpFormatter) -> None: |
| 1891 | super().format_options(ctx, formatter) |
| 1892 | self.format_commands(ctx, formatter) |
| 1893 | |
| 1894 | def format_commands(self, ctx: Context, formatter: HelpFormatter) -> None: |
| 1895 | """Extra format methods for multi methods that adds all the commands |
nothing calls this directly
no test coverage detected