uranusjr commented on code in PR #40868:
URL: https://github.com/apache/airflow/pull/40868#discussion_r1687820653
##########
airflow/datasets/__init__.py:
##########
@@ -306,6 +350,9 @@ def __init__(self, name: str) -> None:
self.name = name
self.objects = expand_alias_to_datasets(name)
+ def __repr__(self) -> str:
+ return f"_DatasetAliasCondition({', '.join(map(str, self.objects))})"
Review Comment:
This does not seem right? At least the class name certainly isn’t.
--
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]