Skip to content

Commit 0ea2bc1

Browse files
authored
Sort data titles case-insensitively
1 parent b616eeb commit 0ea2bc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/create_readme.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ def group_by_maturity(extensions) -> dict:
164164

165165
def main() -> bool:
166166
data = get_extensions()
167-
data.sort(key = lambda x: x["title"])
167+
data.sort(key = lambda x: x["title"].lower())
168168
maturities = group_by_maturity(data)
169169
count = len(data)
170170

0 commit comments

Comments
 (0)