Skip to content

Commit

Permalink
Merge pull request #2305 from davidhewitt/sorted-authors
Browse files Browse the repository at this point in the history
noxfile: sort authors case-insensitively
  • Loading branch information
davidhewitt committed Apr 14, 2022
2 parents 8cd551f + 01e2a55 commit 3660345
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion noxfile.py
Expand Up @@ -124,7 +124,7 @@ def contributors(session: nox.Session) -> None:
else:
break

authors = sorted(list(authors))
authors = sorted(list(authors), key=lambda author: author.lower())

for author in authors:
print(f"@{author}")

0 comments on commit 3660345

Please sign in to comment.