Skip to content

Commit

Permalink
Update generate-modules.py
Browse files Browse the repository at this point in the history
  • Loading branch information
DerGoogler authored Sep 18, 2023
1 parent 6d1df40 commit 33df043
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions generate-modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
from datetime import datetime

# Configuration
REPO_NAME = os.environ['REPO_NAME'] or Null
REPO_TITLE = os.environ['REPO_TITLE'] or Null
REPO_WEBSITE = os.environ['REPO_WEBSITE'] or Null
REPO_SUPPORT = os.environ['REPO_SUPPORT'] or Null
REPO_DONATE = os.environ['REPO_DONATE'] or Null
REPO_SUBMIT_MODULE = os.environ['REPO_SUBMIT_MODULE'] or Null
REPO_NAME = os.getenv('REPO_NAME')
REPO_TITLE = os.getenv('REPO_TITLE')
REPO_WEBSITE = os.getenv('REPO_WEBSITE')
REPO_SUPPORT = os.getenv('REPO_SUPPORT')
REPO_DONATE = os.getenv('REPO_DONATE')
REPO_SUBMIT_MODULE = os.getenv('REPO_SUBMIT_MODULE')

# Initialize the GitHub objects
g = Github(os.environ['GIT_TOKEN'])
Expand Down

0 comments on commit 33df043

Please sign in to comment.