(self, formatter)
| 1055 | return formatter.format_description(self.get_description()) |
| 1056 | |
| 1057 | def format_help(self, formatter): |
| 1058 | result = [] |
| 1059 | if self.description: |
| 1060 | result.append(self.format_description(formatter)) |
| 1061 | if self.option_list: |
| 1062 | result.append(self.format_option_help(formatter)) |
| 1063 | return "\n".join(result) |
| 1064 | |
| 1065 | |
| 1066 | class OptionGroup (OptionContainer): |
nothing calls this directly
no test coverage detected