Skip to content

Commit ba29711

Browse files
authored
Sort repository by name (jupyterlab-contrib#40)
1 parent f52561a commit ba29711

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
)
5050
data = repos.json()
5151
extensions = ""
52-
for repo in data:
52+
for repo in sorted(data, key=lambda r: r["name"]):
5353
if isinstance(repo, str):
5454
raise ValueError(data["message"])
5555

0 commit comments

Comments
 (0)