10 lines
159 B
Python
Generated
10 lines
159 B
Python
Generated
from enum import Enum
|
|
|
|
|
|
class SandboxOnTimeout(str, Enum):
|
|
KILL = "kill"
|
|
PAUSE = "pause"
|
|
|
|
def __str__(self) -> str:
|
|
return str(self.value)
|