(self, formatter)
| 1096 | # -- Help-formatting methods --------------------------------------- |
| 1097 | |
| 1098 | def format_help(self, formatter): |
| 1099 | result = formatter.format_heading(self.title) |
| 1100 | formatter.indent() |
| 1101 | result += OptionContainer.format_help(self, formatter) |
| 1102 | formatter.dedent() |
| 1103 | return result |
| 1104 | |
| 1105 | |
| 1106 | class OptionParser (OptionContainer): |
no test coverage detected