eumiro commented on code in PR #33130: URL: https://github.com/apache/airflow/pull/33130#discussion_r1284972604
########## 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: Or even: ```python author_set = set().union(*author_list.values()) ``` -- 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]
