Eurosmart's picture
.
2700879
raw
history blame contribute delete
130 Bytes
from abc import ABC, abstractmethod
class TaskHandle(ABC):
@abstractmethod
def execute(self, **context: any):
pass