7 lines
95 B
Python
7 lines
95 B
Python
from enum import Enum
|
|
|
|
|
|
class Flavor(str, Enum):
|
|
RETAIL = 'retail'
|
|
CLASSIC = 'classic'
|