Skip to content

Commit bb95b02

Browse files
dragid10kjaymiller
andauthored
Update _conferences/__main__.py
Co-authored-by: Jay Miller <[email protected]>
1 parent 657b2fd commit bb95b02

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

_conferences/__main__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@
1616
def create_github_client():
1717
gh_token = os.getenv("GITHUB_TOKEN", "")
1818
auth = Auth.Token(gh_token)
19-
g = Github(auth=auth)
20-
return g
19+
client = Github(auth=auth)
20+
return client
21+
2122

2223

2324
def get_open_issues(gh: Github) -> PaginatedList[Issue]:

0 commit comments

Comments
 (0)