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 0ac4269 commit 6d1df40
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']
REPO_TITLE = os.environ['REPO_TITLE']
REPO_WEBSITE = os.environ['REPO_WEBSITE']
REPO_SUPPORT = os.environ['REPO_SUPPORT']
REPO_DONATE = os.environ['REPO_DONATE']
REPO_SUBMIT_MODULE = os.environ['REPO_SUBMIT_MODULE']
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

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

0 comments on commit 6d1df40

Please sign in to comment.