potiuk commented on code in PR #30282: URL: https://github.com/apache/airflow/pull/30282#discussion_r1156408922
########## airflow/serialization/serialized_objects.py: ########## @@ -38,14 +38,20 @@ from airflow.configuration import conf from airflow.datasets import Dataset from airflow.exceptions import AirflowException, RemovedInAirflow3Warning, SerializationError +from airflow.jobs.base_job import BaseJob +from airflow.jobs.pydantic.base_job import BaseJobPydantic from airflow.models.baseoperator import BaseOperator, BaseOperatorLink from airflow.models.connection import Connection from airflow.models.dag import DAG, create_timetable +from airflow.models.dagrun import DagRun from airflow.models.expandinput import EXPAND_INPUT_EMPTY, ExpandInput, create_expand_input, get_map_type_key from airflow.models.mappedoperator import MappedOperator from airflow.models.operator import Operator from airflow.models.param import Param, ParamsDict -from airflow.models.taskinstance import SimpleTaskInstance +from airflow.models.pydantic.dag_run import DagRunPydantic +from airflow.models.pydantic.dataset import DatasetPydantic +from airflow.models.pydantic.taskinstance import TaskInstancePydantic Review Comment: We can move it. No problem with that. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
