Loading airflow/docker/dags/dag_hello_world.py +2 −2 Original line number Diff line number Diff line Loading @@ -13,11 +13,11 @@ default_args = { } with DAG( 'dag_hello_world', dag_id='dag_hello_world', default_args=default_args, description='A simple tutorial DAG', schedule_interval=timedelta(days=1), start_date=datetime(2023, 1, 1), schedule="@daily", catchup=False, tags=['example'], ) as dag: Loading Loading
airflow/docker/dags/dag_hello_world.py +2 −2 Original line number Diff line number Diff line Loading @@ -13,11 +13,11 @@ default_args = { } with DAG( 'dag_hello_world', dag_id='dag_hello_world', default_args=default_args, description='A simple tutorial DAG', schedule_interval=timedelta(days=1), start_date=datetime(2023, 1, 1), schedule="@daily", catchup=False, tags=['example'], ) as dag: Loading