From b85210d8596c1e05fbf3da2941aaca8170ae871e Mon Sep 17 00:00:00 2001 From: Samuel Baafi Boakye Date: Fri, 5 Oct 2018 08:01:56 -0700 Subject: [PATCH] [AIRFLOW-XXX] Fix airflow.models.DAG docstring mistake Closes #4004 from Sambeth/sambeth --- airflow/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airflow/models.py b/airflow/models.py index 22e8d2596a95b..239a3a52638c9 100755 --- a/airflow/models.py +++ b/airflow/models.py @@ -3201,7 +3201,7 @@ def get_current(cls, dag_id, session=None): class DAG(BaseDag, LoggingMixin): """ A dag (directed acyclic graph) is a collection of tasks with directional - dependencies. A dag also has a schedule, a start end an end date + dependencies. A dag also has a schedule, a start date and an end date (optional). For each schedule, (say daily or hourly), the DAG needs to run each individual tasks as their dependencies are met. Certain tasks have the property of depending on their own past, meaning that they can't run