Skip to content

Commit

Permalink
Debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanWoollett-Light committed Mar 19, 2024
1 parent 49db246 commit 12c135f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions run.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,11 @@ def post(table):
TOKEN = "TOKEN"

base_opt = os.environ.get(BASE)
print(f"base_opt: {base_opt}")
issue_opt = os.environ.get(ISSUE)
print(f"issue_opt: {issue_opt}")
token_opt = os.environ.get(TOKEN)
print(f"token_opt: {token_opt}")

match base_opt, issue_opt, token_opt, repo_opt:
case base, issue, token, repo:
Expand Down

0 comments on commit 12c135f

Please sign in to comment.