We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4444f6 commit 449b7c1Copy full SHA for 449b7c1
scripts/parse-contributors.py
@@ -31,11 +31,9 @@
31
)
32
33
# Force gh username keys to be lowercase
34
-for key in all_contribs_dict:
35
- all_contribs_dict[key]["github_username"] = all_contribs_dict[key][
36
- "github_username"
37
- ].lower()
38
- print(all_contribs_dict[key]["github_username"])
+for key, user_dict in all_contribs_dict.items():
+ user_dict["github_username"] = user_dict["github_username"].lower()
+ print(user_dict["github_username"])
39
40
gh_data = processContribs.get_gh_data(all_contribs_dict)
41
0 commit comments