From 20d08e535555dbf9d60ccffe66b431208c8732e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Collonval?= Date: Tue, 17 Jan 2023 11:01:22 +0100 Subject: [PATCH] Sort repository by name --- conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf.py b/conf.py index d65635a..242abe2 100644 --- a/conf.py +++ b/conf.py @@ -49,7 +49,7 @@ ) data = repos.json() extensions = "" - for repo in data: + for repo in sorted(data, key=lambda r: r["name"]): if isinstance(repo, str): raise ValueError(data["message"])