From 34013ac3e9d5ee6d96eda48702e337b13bd80acd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A5le=20Stor=C3=B8=20Hauknes?= Date: Sun, 6 Aug 2023 01:25:17 +0200 Subject: [PATCH] Use PRECISION_TENTHS for Mill local integration (#97874) --- homeassistant/components/mill/climate.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/homeassistant/components/mill/climate.py b/homeassistant/components/mill/climate.py index 1e578087b73..975bb2ff2c7 100644 --- a/homeassistant/components/mill/climate.py +++ b/homeassistant/components/mill/climate.py @@ -15,7 +15,6 @@ from homeassistant.const import ( ATTR_TEMPERATURE, CONF_IP_ADDRESS, CONF_USERNAME, - PRECISION_HALVES, PRECISION_TENTHS, UnitOfTemperature, ) @@ -184,7 +183,7 @@ class LocalMillHeater(CoordinatorEntity[MillDataUpdateCoordinator], ClimateEntit _attr_min_temp = MIN_TEMP _attr_name = None _attr_supported_features = ClimateEntityFeature.TARGET_TEMPERATURE - _attr_target_temperature_step = PRECISION_HALVES + _attr_target_temperature_step = PRECISION_TENTHS _attr_temperature_unit = UnitOfTemperature.CELSIUS def __init__(self, coordinator: MillDataUpdateCoordinator) -> None: