Vamsi Reddy
01/27/2022, 9:03 PMTypeError: 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.
Kevin Kho
Vamsi Reddy
01/27/2022, 9:17 PMfor module_name in list:
process = process_module(module_name)
tasks.append(process)
Kevin Kho