This is an automated email from the ASF dual-hosted git repository.
jscheffl 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 3cf15f7b18d Make elasticsearch provider compatible with mypy 1.16.1
(#53109)
3cf15f7b18d is described below
commit 3cf15f7b18d1b6ddf2044d9dfd4249668a629307
Author: Jens Scheffler <[email protected]>
AuthorDate: Wed Jul 9 23:34:48 2025 +0200
Make elasticsearch provider compatible with mypy 1.16.1 (#53109)
---
.../elasticsearch/src/airflow/providers/elasticsearch/version_compat.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/providers/elasticsearch/src/airflow/providers/elasticsearch/version_compat.py
b/providers/elasticsearch/src/airflow/providers/elasticsearch/version_compat.py
index c9a2c486363..82de17b8014 100644
---
a/providers/elasticsearch/src/airflow/providers/elasticsearch/version_compat.py
+++
b/providers/elasticsearch/src/airflow/providers/elasticsearch/version_compat.py
@@ -45,6 +45,6 @@ if AIRFLOW_V_3_0_PLUS:
EsLogMsgType = list[StructuredLogMessage] | str
else:
- EsLogMsgType = list[tuple[str, str]] # type: ignore[misc]
+ EsLogMsgType = list[tuple[str, str]] # type:
ignore[assignment,no-redef,misc]
__all__ = ["AIRFLOW_V_3_0_PLUS", "AIRFLOW_V_3_1_PLUS", "BaseHook",
"EsLogMsgType"]