[Tutor] airflow dag

Peter Otten __peter__ at web.de
Thu May 25 13:22:26 EDT 2017


Alan Gauld via Tutor wrote:

>>dag=dag
> 
> I'm not sure what you think the line above does but
> in normal Python it would have zero effect.

The context makes it a keyword argument.

dag = DAG(...)
...
SimpleHttpOperator(
    ...
    dag=dag
)




More information about the Tutor mailing list