uranusjr commented on code in PR #58062:
URL: https://github.com/apache/airflow/pull/58062#discussion_r2532282256
##########
airflow-core/src/airflow/models/serialized_dag.py:
##########
@@ -61,7 +61,7 @@
class _DagDependenciesResolver:
"""Resolver that resolves dag dependencies to include asset id and assets
link to asset aliases."""
- def __init__(self, dag_id_dependencies: Sequence[tuple[str, dict]],
session: Session) -> None:
+ def __init__(self, dag_id_dependencies: Iterable[tuple[str, list]],
session: Session) -> None:
Review Comment:
dag_id_dependencies should be a sequence, or at least a collection, not any
iterable.
--
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]