From c884bf50926874bcac0e0e2c01479f89e97be707 Mon Sep 17 00:00:00 2001 From: tr4nt0r <4445816+tr4nt0r@users.noreply.github.com> Date: Sat, 15 Nov 2025 02:19:10 +0100 Subject: [PATCH] Fix `UpdateChecker` not raising for `ClientError` --- pythonkuma/update.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pythonkuma/update.py b/pythonkuma/update.py index 8aa2a35..9383f05 100644 --- a/pythonkuma/update.py +++ b/pythonkuma/update.py @@ -37,6 +37,7 @@ async def latest_release(self) -> LatestRelease: url = BASE_URL / "releases/latest" try: async with self._session.get(url) as response: + response.raise_for_status() data = await response.json() return LatestRelease( tag_name=data["tag_name"],