uranusjr commented on code in PR #41695:
URL: https://github.com/apache/airflow/pull/41695#discussion_r1731014076
##########
airflow/models/dag.py:
##########
@@ -767,7 +767,7 @@ def __init__(
self.doc_md = self.get_doc_md(doc_md)
- self.tags = tags or []
+ self.tags: abc.MutableSet[str] = set(tags or [])
Review Comment:
This should probably just use `Collection`. We don’t really expect users to
add more tags to a DAG after it’s created.
--
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]