Skip to content

Commit 844931a

Browse files
remove dotenv
1 parent 7e1ed95 commit 844931a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import os
22
from github import Github, Auth
3-
from dotenv import load_dotenv
3+
#from dotenv import load_dotenv
44

55
if __name__ == '__main__':
66

7-
load_dotenv()
7+
#load_dotenv()
88
acces_token = os.environ.get('GITHUB_TOKEN')
99
repo_uri = os.environ.get('GITHUB_REPOSITORY')
1010
pr_number = int(os.getenv('GITHUB_REF').split('/')[-2])

0 commit comments

Comments
 (0)