Skip to content

Commit

Permalink
fix silly typos
Browse files Browse the repository at this point in the history
  • Loading branch information
bennettscience committed May 12, 2024
1 parent 34f5018 commit 9b7436e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions canvasapi/requester.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def __init__(self, base_url, access_token):
self.original_url = base_url
self.base_url = base_url + "/api/v1/"
self.new_quizzes_url = base_url + "/api/quiz/v1/"
e self.graphql = base_url + "/api/graphql"
self.graphql = base_url + "/api/graphql"
self.access_token = access_token
self._session = requests.Session()
self._cache = []
Expand Down Expand Up @@ -172,9 +172,9 @@ def request(
if not _url:
full_url = "{}{}".format(self.base_url, endpoint)
elif _url == "new_quizzes":
full_url = "{}{}"".format(self.new_quizzes_url, endpoint)
full_url = "{}{}".format(self.new_quizzes_url, endpoint)
elif _url == "graphql":
full_url_url = self.graphql
full_url = self.graphql
else:
full_url = _url

Expand Down

0 comments on commit 9b7436e

Please sign in to comment.