Move Color Enum to utils.py

This commit is contained in:
Benjamin Loison
2024-04-18 00:19:01 +02:00
parent eac2cf2174
commit cca81927dd
2 changed files with 11 additions and 10 deletions

10
datasets/raise/utils.py Normal file
View File

@@ -0,0 +1,10 @@
from enum import Enum, auto
class Color(Enum):
RED = auto()
GREEN_RIGHT = auto()
GREEN_BOTTOM = auto()
BLUE = auto()
def __str__(self):
return self.name.lower()