Return a header string with proper colors.
(self,h)
| 376 | return None |
| 377 | |
| 378 | def __head(self,h) -> str: |
| 379 | """Return a header string with proper colors.""" |
| 380 | return '%s%s%s' % (self.color_table.active_colors.header,h, |
| 381 | self.color_table.active_colors.normal) |
| 382 | |
| 383 | def set_active_scheme(self, scheme): |
| 384 | if scheme is not None: |
no outgoing calls
no test coverage detected