diff --git a/homeassistant/components/sensor/yr.py b/homeassistant/components/sensor/yr.py index f081be1a2f13a9..0cb9c3765ecab5 100644 --- a/homeassistant/components/sensor/yr.py +++ b/homeassistant/components/sensor/yr.py @@ -91,7 +91,8 @@ async def async_setup_platform(hass, config, async_add_entities, async_add_entities(dev) weather = YrData(hass, coordinates, forecast, dev) - async_track_utc_time_change(hass, weather.updating_devices, minute=31) + async_track_utc_time_change(hass, weather.updating_devices, + minute=31, second=0) await weather.fetching_data()