Jean-Baptiste Six
11/16/2021, 4:31 PM@task
async def mytask1():
    await do_smth()
@task
async def mytask2():
    await do_smth()
async def my_flow():
    with Flow("Test") as flow:
        await mytask1()
        mytask2()
    flow.run()
The goal is to be able to execute async functions, my flows will be synchronous between themKevin Kho
Jean-Baptiste Six
11/16/2021, 4:33 PMKevin Kho
Jean-Baptiste Six
11/16/2021, 4:34 PM