Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
adlius committed Nov 20, 2023
1 parent c862df6 commit 1ca9602
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osf/external/cedar/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def retrieve_all_template_ids(self):
resources = r.json()['resources']
return [item['@id'] for item in resources]

def retreive_template_by_id(self, id):
def retrieve_template_by_id(self, id):
url = f'{self.host}templates/{quote_plus(id)}'
r = requests.get(url, headers=self.headers)
return r.json()

0 comments on commit 1ca9602

Please sign in to comment.