10 lines
278 B
Python
10 lines
278 B
Python
|
from bopytex.tasks import Task
|
||
|
|
||
|
|
||
|
def simple(options: dict) -> list[Task]:
|
||
|
"""Simple planner with options['quantity'] tasks and no dependencies"""
|
||
|
return [
|
||
|
Task("FAKE", args={"number": i}, deps=[], output=f"{i}")
|
||
|
for i in range(options["quantity"])
|
||
|
]
|