I been trying to import DAGs into airflow but the same error is appearing in all the DAGs
Has anybody had the same issue? I only use dates in the scheduler parameters
Example:
DEFAULT_ARGS = {
“owner”: “airflow”,
“depends_on_past”: False,
“email”: [“email@email.com”],
“start_date”: pendulum.datetime(year=2020, month=8, day=20),
“email_on_failure”: False,
“email_on_retry”: False,
}
Begin DAG logic
dag = DAG(
DAG_ID,
default_args=DEFAULT_ARGS,
dagrun_timeout=timedelta(hours=3),
schedule_interval=None,
max_active_runs=1,
)