e2b-dev--e2b
12 行
189 B
Python
已生成的
12 行
189 B
Python
已生成的
from enum import Enum
|
|
|
|
|
|
class LogLevel(str, Enum):
|
|
DEBUG = "debug"
|
|
ERROR = "error"
|
|
INFO = "info"
|
|
WARN = "warn"
|
|
|
|
def __str__(self) -> str:
|
|
return str(self.value)
|