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


##########
scripts/ci/runners/sync_authors.py:
##########
@@ -43,14 +43,10 @@
 author_list = toml.loads(req.text)
 
 author_set = set()
-for membership in author_list:
-    author_set.update([author for author in author_list[membership]])
+for authors in author_list.values():
+    author_set.update(authors)

Review Comment:
   ```python
   author_set = {
       author
       for authors in author_list.values()
       for author in authors
   }
   ```



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