Skip to content

Commit 0cc31a3

Browse files
committed
Update f-string formatting
1 parent 66685b1 commit 0cc31a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/update_top_ranking_issues.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def main():
3939
for i, issue in enumerate(issues):
4040
markdown_bullet_point: str = (
4141
f"{issue.html_url} " +
42-
f"({issue._rawData["reactions"]["+1"]} :thumbsup:)"
42+
f"({issue._rawData['reactions']['+1']} :thumbsup:)"
4343
)
4444

4545
markdown_bullet_point = f"{i + 1}. {markdown_bullet_point}"

0 commit comments

Comments
 (0)