diff --git a/homeassistant/components/accuweather/sensor.py b/homeassistant/components/accuweather/sensor.py index 8ce382d2538..4de089f9cf3 100644 --- a/homeassistant/components/accuweather/sensor.py +++ b/homeassistant/components/accuweather/sensor.py @@ -248,7 +248,8 @@ SENSOR_TYPES: tuple[AccuWeatherSensorDescription, ...] = ( state_class=SensorStateClass.MEASUREMENT, metric_unit=UnitOfLength.METERS, us_customary_unit=UnitOfLength.FEET, - value_fn=lambda data, unit: round(cast(float, data[unit][ATTR_VALUE])), + value_fn=lambda data, unit: cast(float, data[unit][ATTR_VALUE]), + native_precision=0, ), AccuWeatherSensorDescription( key="CloudCover",