From 23c00f8099840ce22c566e805ba6d786ecb5946e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Hjelseth=20H=C3=B8yer?= Date: Tue, 14 Jan 2025 06:37:56 +0100 Subject: [PATCH] mill stats MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Daniel Hjelseth Høyer --- homeassistant/components/mill/climate.py | 3 --- homeassistant/components/mill/const.py | 1 - 2 files changed, 4 deletions(-) diff --git a/homeassistant/components/mill/climate.py b/homeassistant/components/mill/climate.py index cc720c49e37..4f700d24e1b 100644 --- a/homeassistant/components/mill/climate.py +++ b/homeassistant/components/mill/climate.py @@ -128,9 +128,6 @@ class MillHeater(CoordinatorEntity[MillDataUpdateCoordinator], ClimateEntity): await self.coordinator.mill_data_connection.set_heater_temp( self._id, float(temperature) ) - await self.coordinator.mill_data_connection.fetch_historic_energy_usage( - self._id - ) await self.coordinator.async_request_refresh() async def async_set_hvac_mode(self, hvac_mode: HVACMode) -> None: diff --git a/homeassistant/components/mill/const.py b/homeassistant/components/mill/const.py index 25cbc0fcb91..c42747920bf 100644 --- a/homeassistant/components/mill/const.py +++ b/homeassistant/components/mill/const.py @@ -2,7 +2,6 @@ ATTR_AWAY_TEMP = "away_temp" ATTR_COMFORT_TEMP = "comfort_temp" -ATTR_MAX_HEATING_POWER = "max_heating_power" ATTR_ROOM_NAME = "room_name" ATTR_SLEEP_TEMP = "sleep_temp" BATTERY = "battery"