a fix I think?

This commit is contained in:
iDutchy 2020-09-18 00:54:26 +00:00
parent d28f0ff35b
commit bbaf3375a8

View File

@ -86,7 +86,7 @@ class Colour:
return int(str(self.value), 16) return int(str(self.value), 16)
def __hex__(self): def __hex__(self):
return self.value return hex(self.value)
@property @property
def r(self): def r(self):