This is an automated email from the ASF dual-hosted git repository.
vincbeck 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 61f3d5aac00 Fix mypy errors in `common/compat` (#57759)
61f3d5aac00 is described below
commit 61f3d5aac0033f572607441ab9aa5955c5fd3a39
Author: Vincent <[email protected]>
AuthorDate: Mon Nov 3 15:57:07 2025 -0500
Fix mypy errors in `common/compat` (#57759)
---
.../common/compat/src/airflow/providers/common/compat/sqlalchemy/orm.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/providers/common/compat/src/airflow/providers/common/compat/sqlalchemy/orm.py
b/providers/common/compat/src/airflow/providers/common/compat/sqlalchemy/orm.py
index 47b8d412eb8..b5023499f1b 100644
---
a/providers/common/compat/src/airflow/providers/common/compat/sqlalchemy/orm.py
+++
b/providers/common/compat/src/airflow/providers/common/compat/sqlalchemy/orm.py
@@ -21,7 +21,7 @@ try:
from sqlalchemy.orm import mapped_column
except ImportError:
# fallback for SQLAlchemy < 2.0
- def mapped_column(*args, **kwargs):
+ def mapped_column(*args, **kwargs): # type: ignore[misc]
from sqlalchemy import Column
return Column(*args, **kwargs)