| 111 | ) |
| 112 | |
| 113 | def format_options(self, ctx: Context, formatter: CommandHelpTextFormatter) -> None: # type: ignore |
| 114 | # `ignore` is put in place here for mypy even though it is the correct behavior, |
| 115 | # as the `formatter_class` can be set in subclass of Command. If ignore is not set, |
| 116 | # mypy raises argument needs to be HelpFormatter as super class defines it. |
| 117 | |
| 118 | self.format_description(formatter) |
| 119 | DeployCommand.format_examples(ctx, formatter) |
| 120 | DeployCommand.format_acronyms(formatter) |
| 121 | |
| 122 | CoreCommand._format_options( |
| 123 | ctx=ctx, |
| 124 | params=self.get_params(ctx), |
| 125 | formatter=formatter, |
| 126 | formatting_options=OPTIONS_INFO, |
| 127 | write_rd_overrides={"col_max": COL_SIZE_MODIFIER}, |
| 128 | ) |