Skip to content

Commit

Permalink
Update get_latest_tag.py
Browse files Browse the repository at this point in the history
changed exorde to exorde-client when calling the api
  • Loading branch information
MathiasExorde authored Jun 15, 2023
1 parent 3b5f340 commit b83e7ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exorde/get_latest_tag.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
async def get_latest_tag():
async with aiohttp.ClientSession() as session:
async with session.get(
"https://api.github.com/repos/exorde/exorde-client/releases/latest"
"https://api.github.com/repos/exorde-labs/exorde-client/releases/latest"
) as response:
body = await response.json()
return body["tag_name"]

0 comments on commit b83e7ef

Please sign in to comment.