(text)
| 39 | def warn(text): |
| 40 | print( ''.join([Fore.YELLOW, text, Style.RESET_ALL])) |
| 41 | def debug(text): |
| 42 | print( ''.join([Fore.RED, text, Style.RESET_ALL])) |
| 43 | except ImportError: |
| 44 | info = print; warn = print; debug = print |
| 45 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…