This is an automated email from the ASF dual-hosted git repository.
uranusjr 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 32c811b68a2 fix typo (#57783)
32c811b68a2 is described below
commit 32c811b68a2f7c3a6047565c08e42d90ab8a884f
Author: Kalyan R <[email protected]>
AuthorDate: Tue Nov 4 10:35:24 2025 +0530
fix typo (#57783)
---
airflow-core/src/airflow/dag_processing/collection.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/airflow-core/src/airflow/dag_processing/collection.py
b/airflow-core/src/airflow/dag_processing/collection.py
index 6634754a58d..c91e8724e88 100644
--- a/airflow-core/src/airflow/dag_processing/collection.py
+++ b/airflow-core/src/airflow/dag_processing/collection.py
@@ -139,7 +139,7 @@ class _RunInfo(NamedTuple):
@classmethod
def calculate(cls, dags: dict[str, LazyDeserializedDAG], *, session:
Session) -> Self:
"""
- Query the the run counts from the db.
+ Query the run counts from the db.
:param dags: dict of dags to query
"""