Fix incorrect default value

This commit is contained in:
alstr 2021-03-28 10:07:43 +01:00
parent cd988d2d92
commit 0e88f71450

View File

@ -43,7 +43,7 @@ class GitHubClient(object):
base_url = 'https://api.github.com/repos/'
def __init__(self):
self.repo = os.getenv('INPUT_REPO', 'alstr/todo-test')
self.repo = os.getenv('INPUT_REPO')
self.before = os.getenv('INPUT_BEFORE')
self.sha = os.getenv('INPUT_SHA')
self.token = os.getenv('INPUT_TOKEN')