11 lines
191 B
Python
11 lines
191 B
Python
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()
|