Format option strings for display
(self, option)
| 80 | self.tabs.append(tab_data) |
| 81 | |
| 82 | def _format_option_strings(self, option): |
| 83 | """Format option strings for display""" |
| 84 | parts = [] |
| 85 | if hasattr(option, '_short_opts') and option._short_opts: |
| 86 | parts.extend(option._short_opts) |
| 87 | if hasattr(option, '_long_opts') and option._long_opts: |
| 88 | parts.extend(option._long_opts) |
| 89 | return ', '.join(parts) |
| 90 | |
| 91 | def _draw_header(self): |
| 92 | """Draw the header bar""" |
no test coverage detected