noxfile: sort authors case-insensitively

This commit is contained in:
David Hewitt 2022-04-14 07:42:53 +01:00
parent c2d44ac7e3
commit 01e2a553df
1 changed files with 1 additions and 1 deletions

View File

@ -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}")