Skip to content

Commit

Permalink
Fix colors (#217)
Browse files Browse the repository at this point in the history
* remove unused color

* fixed gray (was black)
  • Loading branch information
GuyAv46 authored Jan 11, 2024
1 parent bc0597d commit 55f3ff0
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions RLTest/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,7 @@ def Bred(data):

@staticmethod
def Gray(data):
return '\033[30;1m' + data + '\033[0m'

@staticmethod
def Lgray(data):
return '\033[30;47m' + data + '\033[0m'
return '\033[90;1m' + data + '\033[0m'

@staticmethod
def Blue(data):
Expand Down

0 comments on commit 55f3ff0

Please sign in to comment.