(self, text)
| 250 | self._dedent() |
| 251 | |
| 252 | def add_text(self, text): |
| 253 | if text is not SUPPRESS and text is not None: |
| 254 | self._add_item(self._format_text, [text]) |
| 255 | |
| 256 | def add_usage(self, usage, actions, groups, prefix=None): |
| 257 | if usage is not SUPPRESS: |
no test coverage detected