(self, text)
| 264 | self._dedent() |
| 265 | |
| 266 | def add_text(self, text): |
| 267 | if text is not SUPPRESS and text is not None: |
| 268 | self._add_item(self._format_text, [text]) |
| 269 | |
| 270 | def add_usage(self, usage, actions, groups, prefix=None): |
| 271 | if usage is not SUPPRESS: |
no test coverage detected