Spaces:
Runtime error
Runtime error
File size: 153 Bytes
105b369 |
1 2 3 4 5 6 7 8 |
from phi.utils.enum import ExtendedEnum
class RestartPolicy(str, ExtendedEnum):
ALWAYS = "Always"
ON_FAILURE = "OnFailure"
NEVER = "Never"
|