vincbeck commented on code in PR #43826: URL: https://github.com/apache/airflow/pull/43826#discussion_r1842617394
########## airflow/assets/__init__.py: ########## @@ -301,10 +328,14 @@ def __init__( self.uri = _sanitize_uri(_validate_non_empty_identifier(self, fields["uri"], uri)) self.group = _validate_identifier(self, fields["group"], group) if group else self.asset_type self.extra = _set_extra_default(extra) + self.watchers = watchers or [] def __fspath__(self) -> str: return self.uri + def __hash__(self) -> int: Review Comment: I am sure I needed it when implementing it but I just tested it without it and it worked so I'll remove it -- 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: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org