We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
UpdateChecker
ClientError
1 parent 17fe37f commit c884bf5Copy full SHA for c884bf5
1 file changed
pythonkuma/update.py
@@ -37,6 +37,7 @@ async def latest_release(self) -> LatestRelease:
37
url = BASE_URL / "releases/latest"
38
try:
39
async with self._session.get(url) as response:
40
+ response.raise_for_status()
41
data = await response.json()
42
return LatestRelease(
43
tag_name=data["tag_name"],
0 commit comments