Lee-W commented on code in PR #46882: URL: https://github.com/apache/airflow/pull/46882#discussion_r1961143769
########## airflow/api_fastapi/core_api/datamodels/dag_run.py: ########## @@ -20,10 +20,11 @@ from datetime import datetime from enum import Enum +import pendulum from pydantic import AwareDatetime, Field, NonNegativeInt, model_validator from airflow.api_fastapi.core_api.base import BaseModel, StrictBaseModel -from airflow.models import DagRun +from airflow.models import DAG, DagRun Review Comment: nit: not sure whether we could move `DAG` to TYPE_CHECKING 🤔 -- 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]
