Skip to content

Commit

Permalink
noxfile: sort authors case-insensitively
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhewitt committed Apr 14, 2022
1 parent c2d44ac commit 01e2a55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
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 01e2a55

Please sign in to comment.