ordena la llista per nom

This commit is contained in:
2026-05-18 10:28:17 +02:00
parent d14c246bcb
commit 7e67bced6a
+1 -1
View File
@@ -231,7 +231,7 @@ def build_entries(remote_repos: list[RemoteRepo], local_index: dict[str, Path])
local_path=local,
)
)
entries.sort(key=lambda e: (e.local_path is not None, e.name.lower()))
entries.sort(key=lambda e: e.name.lower())
return entries