8 lines
106 B
Python
8 lines
106 B
Python
from enum import Enum
|
|
|
|
|
|
class Color(str, Enum):
|
|
green = "green"
|
|
red = "red"
|
|
yellow = "yellow"
|