Hi >From the documentation I guess I spotted the way of reusing dags from other python files: this can be done by creating "subdags".
I have created several pipelines (dag1.py, dag2.py...) in several python files Right now, I d'like to build a meta-pipeline dag3 = dag1 >> dag2 Do I have to convert dag1 and dag2 to subdag and import them in dag3 ? Or is there a more friendly way Thanks -- nicolas
