diff --git a/homeassistant/components/smhi/weather.py b/homeassistant/components/smhi/weather.py index 5458abb1786ca..0fd808d140120 100644 --- a/homeassistant/components/smhi/weather.py +++ b/homeassistant/components/smhi/weather.py @@ -134,7 +134,9 @@ async def async_update(self) -> None: async def retry_update(self, _): """Retry refresh weather forecast.""" - await self.async_update() + await self.async_update( # pylint: disable=unexpected-keyword-arg + no_throttle=True + ) async def get_weather_forecast(self) -> []: """Return the current forecasts from SMHI API."""