8 lines
133 B
Python
8 lines
133 B
Python
from enum import Enum
|
|
|
|
|
|
class Verbosity(str, Enum):
|
|
CONCISE = "concise"
|
|
STANDARD = "standard"
|
|
TEXT_HEAVY = "text-heavy"
|
|
|