| 6 | |
| 7 | |
| 8 | class Color: |
| 9 | @staticmethod |
| 10 | def print_focus(data: str): |
| 11 | print(Fore.YELLOW+data+Fore.RESET) |
| 12 | |
| 13 | @staticmethod |
| 14 | def print_success(data: str): |
| 15 | print(Fore.LIGHTGREEN_EX+data+Fore.RESET) |
| 16 | |
| 17 | @staticmethod |
| 18 | def print_failed(data: str): |
| 19 | print(Fore.LIGHTRED_EX+data+Fore.RESET) |
| 20 | |
| 21 | @staticmethod |
| 22 | def print(data): |
| 23 | pprint.pprint(data) |
| 24 | |
| 25 | |
| 26 | class Pattern: |
nothing calls this directly
no outgoing calls
no test coverage detected