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 8870d764176 Fix static checks (#47578)
8870d764176 is described below
commit 8870d764176401cb62a8d515d4491435549f7e7e
Author: Shahar Epstein <[email protected]>
AuthorDate: Mon Mar 10 18:38:02 2025 +0200
Fix static checks (#47578)
---
airflow/example_dags/example_custom_weight.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/airflow/example_dags/example_custom_weight.py
b/airflow/example_dags/example_custom_weight.py
index 1c87b3efa5e..1e1f9c31e94 100644
--- a/airflow/example_dags/example_custom_weight.py
+++ b/airflow/example_dags/example_custom_weight.py
@@ -22,6 +22,7 @@ from __future__ import annotations
import datetime
import pendulum
+
from airflow.example_dags.plugins.decreasing_priority_weight_strategy import
DecreasingPriorityStrategy
# [START example_custom_weight_dag]