uranusjr commented on code in PR #42189:
URL: https://github.com/apache/airflow/pull/42189#discussion_r1757283577
##########
airflow/utils/context.py:
##########
@@ -172,7 +172,7 @@ class OutletEventAccessor:
raw_key: str | Dataset | DatasetAlias
extra: dict[str, Any] = attrs.Factory(dict)
- dataset_alias_event: DatasetAliasEvent | None = None
+ dataset_alias_events: list[DatasetAliasEvent] = attrs.Factory(factory=list)
Review Comment:
```suggestion
dataset_alias_events: list[DatasetAliasEvent] = attrs.field(factory=list)
```
Autocomplete fail?
--
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]