noxfile: sort authors case-insensitively
This commit is contained in:
parent
c2d44ac7e3
commit
01e2a553df
|
@ -124,7 +124,7 @@ def contributors(session: nox.Session) -> None:
|
||||||
else:
|
else:
|
||||||
break
|
break
|
||||||
|
|
||||||
authors = sorted(list(authors))
|
authors = sorted(list(authors), key=lambda author: author.lower())
|
||||||
|
|
||||||
for author in authors:
|
for author in authors:
|
||||||
print(f"@{author}")
|
print(f"@{author}")
|
||||||
|
|
Loading…
Reference in New Issue