(text)
| 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): |
| 42 | print( ''.join([Fore.RED, text, Style.RESET_ALL])) |
| 43 | except ImportError: |
no outgoing calls
no test coverage detected
searching dependent graphs…