This is an automated email from the ASF dual-hosted git repository. pierrejeambrun pushed a commit to branch v2-5-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 147d5fe7193227228bc5a45b5a003f91c6b63f10 Author: bharat99k <[email protected]> AuthorDate: Sat Jan 21 01:28:15 2023 +0530 fixing import error for dataset (#29007) (cherry picked from commit 481f27170673cb1e4fc8210341c8d341b11925e9) --- airflow/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/airflow/__init__.py b/airflow/__init__.py index 19624252a3..68437a2e5f 100644 --- a/airflow/__init__.py +++ b/airflow/__init__.py @@ -115,3 +115,4 @@ if STATICA_HACK: # pragma: no cover from airflow.models.dag import DAG from airflow.models.xcom_arg import XComArg from airflow.exceptions import AirflowException + from airflow.models.dataset import Dataset
