Wrapper for colorize(text, 'blue')
(text, attrib=None)
| 144 | return colorize(text, "yellow", attrib) |
| 145 | |
| 146 | def blue(text, attrib=None): |
| 147 | """Wrapper for colorize(text, 'blue')""" |
| 148 | return colorize(text, "blue", attrib) |
| 149 | |
| 150 | def clearscreen(): |
| 151 | """Clear terminal screen""" |
no test coverage detected