Skip to content

Commit

Permalink
Update generate_release_notes.py
Browse files Browse the repository at this point in the history
  • Loading branch information
seljabali committed Mar 30, 2024
1 parent 94ed678 commit a0a4320
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/scripts/generate_release_notes.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ def getAuthorHandlesFromNames(authors_set):
values = []
for author in authors_set:
if author in devsMap:
# If the key is found, append its value to the list
values.append(devsMap[author])
else:
values.append(author)

result_string = ', '.join(values)
return result_string
Expand Down

0 comments on commit a0a4320

Please sign in to comment.