(self)
| 303 | # ======================= |
| 304 | |
| 305 | def format_help(self): |
| 306 | help = self._root_section.format_help() |
| 307 | if help: |
| 308 | help = self._long_break_matcher.sub('\n\n', help) |
| 309 | help = help.strip('\n') + '\n' |
| 310 | return help |
| 311 | |
| 312 | def _join_parts(self, part_strings): |
| 313 | return ''.join([part |
no test coverage detected