(text)
| 35 | try: |
| 36 | from colorama import init, Fore, Back, Style; init() |
| 37 | def info(text): |
| 38 | print( ''.join([Fore.GREEN, text, Style.RESET_ALL])) |
| 39 | def warn(text): |
| 40 | print( ''.join([Fore.YELLOW, text, Style.RESET_ALL])) |
| 41 | def debug(text): |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…