Creates the underlying option parser for this command.
(self, ctx: Context)
| 1176 | return self._help_option |
| 1177 | |
| 1178 | def make_parser(self, ctx: Context) -> _OptionParser: |
| 1179 | """Creates the underlying option parser for this command.""" |
| 1180 | parser = _OptionParser(ctx) |
| 1181 | for param in self.get_params(ctx): |
| 1182 | param.add_to_parser(parser, ctx) |
| 1183 | return parser |
| 1184 | |
| 1185 | def get_help(self, ctx: Context) -> str: |
| 1186 | """Formats the help into a string and returns it. |
no test coverage detected