(string)
| 8 | return "\033[1;32m" + unicode(string) + "\033[0m" |
| 9 | |
| 10 | def yellow(string): |
| 11 | return "\033[1;33m" + unicode(string) + "\033[0m" |
| 12 | |
| 13 | def red(string): |
| 14 | return "\033[1;31m" + unicode(string) + "\033[0m" |
no outgoing calls
no test coverage detected