ferruzzi commented on code in PR #32532:
URL: https://github.com/apache/airflow/pull/32532#discussion_r1260394523
##########
docs/exts/operators_and_hooks_ref.py:
##########
@@ -284,12 +284,32 @@ def _prepare_notifications_data():
return all_notifiers
+def _prepare_executors_data():
+ package_data = load_package_data()
+ all_executors = {}
+ for provider in package_data:
+ executors = provider.get("executors")
+ if executors:
Review Comment:
Unleash the walrus?
```suggestion
if (executors := provider.get("executors")):
```
--
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]