Skip to content

Commit

Permalink
Update update_top_ranking_issues.py
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamRJensen authored Oct 19, 2024
1 parent 972c3ae commit 7d15199
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/update_top_ranking_issues.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@
break

# edit top issues
top_issues_card: Issue = repository.get_issue(number=2196)
repo_name_local: str = "adamrjensen/pvlib-python"
repository_local: Repository = github.get_repo(repo_name_local)
top_issues_card: Issue = repository_local.get_issue(number=3)
header = "Top Ranking Issues"
new_body = header + "\n" + "\n".join(ranked_issues)
top_issues_card.edit(
Expand Down

0 comments on commit 7d15199

Please sign in to comment.