(s)
| 375 | def green_text(s): |
| 376 | return colour_text(s, 'green') |
| 377 | def yellow_text(s): |
| 378 | return colour_text(s, 'yellow') |
| 379 | def cyan_text(s): |
| 380 | return colour_text(s, 'cyan') |
| 381 | def blue_text(s): |
nothing calls this directly
no test coverage detected