MCPcopy Create free account
hub / github.com/Tyaoo/picker / Color

Class Color

utils.py:8–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6
7
8class 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
26class Pattern:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected