I do not seem to understand how to import modules into an apache airflow DAG definition file. I would want to do this to be able to create a library which makes declaring ta
Adding the sys path again worked for me,
import sys sys.path.insert(0,os.path.abspath(os.path.dirname(__file__)))