We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 986dcb9 commit fb80c7aCopy full SHA for fb80c7a
main.py
@@ -3,7 +3,7 @@
3
import sys
4
import subprocess
5
import re
6
-from github import Github
+from github import Github, GithubRetry()
7
8
9
# Constants for message titles
@@ -105,7 +105,7 @@ def add_pr_comments() -> int:
105
106
# Initialize GitHub client
107
# g = Github(token)
108
- g = Github(token, retry=github.GithubRetry())
+ g = Github(token, retry=GithubRetry())
109
repo = g.get_repo(repo_name)
110
pull_request = repo.get_issue(int(pr_number))
111
0 commit comments