12 lines
167 B
Python
12 lines
167 B
Python
|
from .context import Context
|
||
|
|
||
|
|
||
|
class Task:
|
||
|
|
||
|
def __init__(self, context: Context):
|
||
|
self.context = context
|
||
|
pass
|
||
|
|
||
|
def execute(self):
|
||
|
pass
|