Spaces:
Runtime error
Runtime error
File size: 97 Bytes
2eafbc4 |
1 2 3 4 5 6 7 |
from enum import Enum
class StepExecutionMode(Enum):
LOCAL = "local"
REMOTE = "remote"
|