🌟 You can now use Colours like this in devgoldyutils:
print(Colours.RED + "ERROR: YOU CAN'T DO THIS!!!!" + Colours.RESET_COLOUR)
The string representation now automatically returns the colour value.
before v2.3.5 you had to use .value
:
print(Colours.RED.value + "ERROR: YOU CAN'T DO THIS!!!!" + Colours.RESET_COLOUR.value)