Hi I am facing an issue
I have created an extraction flow and run it locally , its working fine, this program contains one task and inside this task its calling another function from different python module
for ex
import abc
@task
def fun()
abc.fun1()
assume like above , its working in local but when i register the flow in cloud its failed saying abc not found
how can we resolve this
should I write all the logic inside task function itself ??