We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d10345c commit c6cc92eCopy full SHA for c6cc92e
1 file changed
contributor_stats.py
@@ -104,7 +104,7 @@ def merge_contributors(contributors: list) -> list:
104
merged_contributors: List[ContributorStats] = []
105
for contributor_list in contributors:
106
for contributor in contributor_list:
107
- # if the contributor is already in the merged list, merge their relavent attributes
+ # if the contributor is already in the merged list, merge their relevant attributes
108
if contributor.username in [c.username for c in merged_contributors]:
109
for merged_contributor in merged_contributors:
110
if merged_contributor.username == contributor.username:
0 commit comments