diff --git a/examples/airflow_connection_target_dag.py b/examples/airflow_connection_target_dag.py index e24db9d..7aaf3d2 100644 --- a/examples/airflow_connection_target_dag.py +++ b/examples/airflow_connection_target_dag.py @@ -25,10 +25,7 @@ ) -if settings.Session is None: - settings.configure_orm() - -session = settings.Session() +session = settings.Session() # type: ignore session.add(my_conn) session.commit()