Function to beautify terminal output
(string, color)
| 127 | |
| 128 | if colored: |
| 129 | def log(string, color): |
| 130 | """ |
| 131 | Function to beautify terminal output |
| 132 | """ |
| 133 | print(colored(string, color)) |
| 134 | else: |
| 135 | def log(string, color): |
| 136 | """ |
no outgoing calls
no test coverage detected