jlaneve commented on code in PR #35287:
URL: https://github.com/apache/airflow/pull/35287#discussion_r1377712293
##########
airflow/api/common/delete_dag.py:
##########
@@ -72,7 +72,7 @@ def delete_dag(dag_id: str, keep_records_in_log: bool = True,
session: Session =
)
)
- dags_to_delete = [dag_id for dag_id, in dags_to_delete_query]
+ dags_to_delete = [dag_id for (dag_id,) in dags_to_delete_query]
Review Comment:
yeah this looks like it was a typo before - I've gone through and removed
all cases like this
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]