dstandish commented on code in PR #37101:
URL: https://github.com/apache/airflow/pull/37101#discussion_r1507906113


##########
airflow/datasets/__init__.py:
##########
@@ -106,8 +112,22 @@ class DatasetAny(_DatasetBooleanCondition):
 
     agg_func = any
 
+    def __or__(self, other: BaseDatasetEventInput) -> DatasetAny:
+        # Optimization: X | (Y | Z) is equivalent to X | Y | Z.

Review Comment:
   alternatively if you don't want to think of it as a "to do" you could write
   ```
   # potential optimization: X | (Y | Z) is equivalent to X | Y | Z.
   ```



-- 
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

Reply via email to