Reorder people on Github Wikidata report.

This commit is contained in:
Edward Betts 2023-09-25 12:58:28 +01:00
parent cc32b0459d
commit b36ff3a9c1

View file

@ -436,6 +436,8 @@ def github_wikidata() -> str:
continue
items.append((person, qid, wd_name, photo))
items.sort(key=lambda i: len(i[0].name))
return flask.render_template("github.html", items=items)