Skip to content

Commit 780bcdb

Browse files
author
Wes Dean
committed
Cleanup pyright linter errors
1 parent 599a3fd commit 780bcdb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sync.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@
3333
##
3434
# @var str PAT
3535
# @brief Personal Access Token for interacting with GitHub
36-
PAT = os.getenv("PAT", None)
36+
PAT = str(os.getenv("PAT", None))
3737

3838
##
3939
# @var str ORG
4040
# @brief name of GitHub organization to query
41-
ORG = os.getenv("ORG", None)
41+
ORG = str(os.getenv("ORG", None))
4242

4343
##
4444
# @var str TEAM_NAME

0 commit comments

Comments
 (0)