This is an automated email from the ASF dual-hosted git repository.
jscheffl pushed a commit to branch v3-2-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-2-test by this push:
new 70a928fc3b7 [v3-2-test] Re export AirflowPlugin to fix mypy errors in
plugins (#65132) (#65163)
70a928fc3b7 is described below
commit 70a928fc3b7421602ddc73c306719265060ca4aa
Author: Jens Scheffler <[email protected]>
AuthorDate: Mon Apr 13 21:07:48 2026 +0200
[v3-2-test] Re export AirflowPlugin to fix mypy errors in plugins (#65132)
(#65163)
(cherry picked from commit 521d52579296f274dd9c4dcd7e22fd62cade1c22)
Co-authored-by: Amogh Desai <[email protected]>
---
airflow-core/src/airflow/plugins_manager.py | 2 +-
task-sdk/src/airflow/sdk/plugins_manager.py | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/airflow-core/src/airflow/plugins_manager.py
b/airflow-core/src/airflow/plugins_manager.py
index 6e2b94330d6..76b478db66f 100644
--- a/airflow-core/src/airflow/plugins_manager.py
+++ b/airflow-core/src/airflow/plugins_manager.py
@@ -28,7 +28,7 @@ from typing import TYPE_CHECKING, Any
from airflow import settings
from airflow._shared.module_loading import import_string, qualname
from airflow._shared.plugins_manager import (
- AirflowPlugin,
+ AirflowPlugin as AirflowPlugin,
AirflowPluginSource as AirflowPluginSource,
PluginsDirectorySource as PluginsDirectorySource,
_load_entrypoint_plugins,
diff --git a/task-sdk/src/airflow/sdk/plugins_manager.py
b/task-sdk/src/airflow/sdk/plugins_manager.py
index 8147174cbfb..594f69bc28c 100644
--- a/task-sdk/src/airflow/sdk/plugins_manager.py
+++ b/task-sdk/src/airflow/sdk/plugins_manager.py
@@ -27,7 +27,7 @@ from airflow import settings
from airflow.sdk._shared.module_loading import import_string
from airflow.sdk._shared.observability.metrics.stats import Stats
from airflow.sdk._shared.plugins_manager import (
- AirflowPlugin,
+ AirflowPlugin as AirflowPlugin,
_load_entrypoint_plugins,
_load_plugins_from_plugin_directory,
integrate_listener_plugins as _integrate_listener_plugins,