uranusjr commented on code in PR #53001: URL: https://github.com/apache/airflow/pull/53001#discussion_r2192506356
########## airflow-core/src/airflow/models/baseoperator.py: ########## @@ -29,9 +29,10 @@ from collections.abc import Collection, Iterable, Iterator from datetime import datetime from functools import singledispatchmethod -from typing import TYPE_CHECKING, Any +from typing import TYPE_CHECKING, Any, cast from sqlalchemy import select +from sqlalchemy.orm import Session Review Comment: Yeah I wonder if this can be improved (in Python). Gotta investigate when I have some time. -- 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]
