(self, formatter)
| 1043 | # -- Help-formatting methods --------------------------------------- |
| 1044 | |
| 1045 | def format_option_help(self, formatter): |
| 1046 | if not self.option_list: |
| 1047 | return "" |
| 1048 | result = [] |
| 1049 | for option in self.option_list: |
| 1050 | if not option.help is SUPPRESS_HELP: |
| 1051 | result.append(formatter.format_option(option)) |
| 1052 | return "".join(result) |
| 1053 | |
| 1054 | def format_description(self, formatter): |
| 1055 | return formatter.format_description(self.get_description()) |
no test coverage detected