Jordan Charlier
07/01/2022, 3:54 PMAnna Geller
07/01/2022, 4:49 PMJordan Charlier
07/04/2022, 7:20 AM_, list_db = get_list_db()
for db in list_db:
e = extract(db)
t = transform(e)
l = load(t)
I have a typing error for list_temp_file :
`Task is not iterable. If your task returns multiple results, pass nout
to the task decorator/constructor, or provide a Tuple
return-type annotation to your task.` Even if I decorate get_list_db with nout=2Anna Geller
07/04/2022, 11:17 AM@flow
def your_flow():
_, list_db = get_list_db()
for db in list_db.result():
e = extract(db)
t = transform(e)
l = load(t)
Jordan Charlier
07/04/2022, 3:14 PM