uranusjr commented on code in PR #33745:
URL: https://github.com/apache/airflow/pull/33745#discussion_r1308405461


##########
dev/breeze/src/airflow_breeze/utils/parallel.py:
##########
@@ -357,7 +357,7 @@ def print_async_summary(completed_list: list[ApplyResult]) 
-> None:
 
 def get_completed_result_list(results: list[ApplyResult]) -> list[ApplyResult]:
     """Return completed results from the list."""
-    return list(filter(lambda result: result.ready(), results))
+    return [result for result in results if result.ready]

Review Comment:
   ```suggestion
       return [result for result in results if result.ready()]
   ```



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

Reply via email to