Skip to content

Commit

Permalink
removed unnecessary functions
Browse files Browse the repository at this point in the history
  • Loading branch information
varendra007 committed Feb 21, 2024
1 parent e82b314 commit 4d7d977
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions utils/colors.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
class colors:
HEADER = '\033[95m'
OKBLUE = '\033[94m'
OKCYAN = '\033[96m'
OKGREEN = '\033[92m'
WARNING = '\033[93m'
FAIL = '\033[91m'
ENDC = '\033[0m'
BOLD = '\033[1m'
UNDERLINE = '\033[4m'

def yellowPrint(message):
print( message)
HEADER = "\033[95m"
OKBLUE = "\033[94m"
OKCYAN = "\033[96m"
OKGREEN = "\033[92m"
WARNING = "\033[93m"
FAIL = "\033[91m"
ENDC = "\033[0m"
BOLD = "\033[1m"
UNDERLINE = "\033[4m"

0 comments on commit 4d7d977

Please sign in to comment.