Wrapper for colorize(text, 'red')
(text, attrib=None)
| 136 | return colorize(text, "green", attrib) |
| 137 | |
| 138 | def red(text, attrib=None): |
| 139 | """Wrapper for colorize(text, 'red')""" |
| 140 | return colorize(text, "red", attrib) |
| 141 | |
| 142 | def yellow(text, attrib=None): |
| 143 | """Wrapper for colorize(text, 'yellow')""" |