(self, text)
| 272 | self._dedent() |
| 273 | |
| 274 | def add_text(self, text): |
| 275 | if text is not SUPPRESS and text is not None: |
| 276 | self._add_item(self._format_text, [text]) |
| 277 | |
| 278 | def add_usage(self, usage, actions, groups, prefix=None): |
| 279 | if usage is not SUPPRESS: |
no test coverage detected