Skip to content

Commit

Permalink
hardcode URL and use input for token
Browse files Browse the repository at this point in the history
  • Loading branch information
alisonmyers committed Sep 29, 2020
1 parent 14d0f5f commit 78ba418
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions extend_quiz.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@
if mode == "test":
API_URL = "https://ubc.test.instructure.com/"
else:
print("Using https://ubc.instructure.com/")
API_URL = "https://ubc.instructure.com/"
URL = "https://ubc.instructure.com/"
print(f"Using {URL}...")
API_URL = URL
# API_URL = input("Enter Canvas URL instance: ")

# WARNING: Using Ctrl + V for getpass on windows on console seems to cause wonky issues.
Expand Down

0 comments on commit 78ba418

Please sign in to comment.