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