diff --git a/pyhilo/api.py b/pyhilo/api.py index 4e25858..739f58b 100755 --- a/pyhilo/api.py +++ b/pyhilo/api.py @@ -762,4 +762,4 @@ async def get_weather(self, location_id: int) -> dict[str, Any]: LOG.debug("Weather URL is %s", url) response = await self.async_request("get", url) LOG.debug("Weather API response: %s", response) - return cast(dict[str, Any], await self.async_request("get", url)) + return cast(dict[str, Any], response)