mirror of
https://github.com/ChronosX88/medved.git
synced 2024-11-22 22:52:19 +00:00
7 lines
131 B
Python
7 lines
131 B
Python
class Task:
|
|
"""Pipelines should consist of tasks??..."""
|
|
def __init__(self):
|
|
self._data = None
|
|
|
|
def run(self):
|
|
pass |