Spaces:
Runtime error
Runtime error
File size: 130 Bytes
2700879 |
1 2 3 4 5 |
from abc import ABC, abstractmethod
class TaskHandle(ABC):
@abstractmethod
def execute(self, **context: any):
pass |