This is an automated email from the ASF dual-hosted git repository.
kaxilnaik pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 2703a401a2b Fix static check ruff-format (#55993)
2703a401a2b is described below
commit 2703a401a2bb172a8822f85ad51faa1c41c14de9
Author: Dheeraj Turaga <[email protected]>
AuthorDate: Tue Sep 23 09:03:22 2025 -0500
Fix static check ruff-format (#55993)
---
airflow-core/src/airflow/api_fastapi/core_api/routes/ui/grid.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/airflow-core/src/airflow/api_fastapi/core_api/routes/ui/grid.py
b/airflow-core/src/airflow/api_fastapi/core_api/routes/ui/grid.py
index f5f97b464a3..c7fa2c6c77b 100644
--- a/airflow-core/src/airflow/api_fastapi/core_api/routes/ui/grid.py
+++ b/airflow-core/src/airflow/api_fastapi/core_api/routes/ui/grid.py
@@ -170,7 +170,7 @@ def get_dag_structure(
DagRun.id.in_(run_ids),
SerializedDagModel.id != latest_serdag.id,
)
- )
+ ),
)
)
merged_nodes: list[GridNodeResponse] = []