(s)
| 371 | def default_text(s): |
| 372 | return colour_text(s, 'default') |
| 373 | def red_text(s): |
| 374 | return colour_text(s, 'red') |
| 375 | def green_text(s): |
| 376 | return colour_text(s, 'green') |
| 377 | def yellow_text(s): |
nothing calls this directly
no test coverage detected