Skip to content

Instantly share code, notes, and snippets.

@heiswayi
Created September 21, 2020 02:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save heiswayi/5348405f488ee4614b2aaa8ff64f08ee to your computer and use it in GitHub Desktop.
Save heiswayi/5348405f488ee4614b2aaa8ff64f08ee to your computer and use it in GitHub Desktop.
class bcolors:
HEADER = '\033[95m'
OKBLUE = '\033[94m'
OKGREEN = '\033[92m'
WARNING = '\033[93m'
FAIL = '\033[91m'
ENDC = '\033[0m'
def disable(self):
self.HEADER = ''
self.OKBLUE = ''
self.OKGREEN = ''
self.WARNING = ''
self.FAIL = ''
self.ENDC = ''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment