From 66e3d6960612fba860e4b455192da492845acd38 Mon Sep 17 00:00:00 2001 From: Erik Montnemery Date: Tue, 8 Aug 2023 22:02:45 +0200 Subject: [PATCH] Remove confusing comment from accuweather (#98063) --- homeassistant/components/accuweather/weather.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/homeassistant/components/accuweather/weather.py b/homeassistant/components/accuweather/weather.py index 30dae28c408..c2889bae102 100644 --- a/homeassistant/components/accuweather/weather.py +++ b/homeassistant/components/accuweather/weather.py @@ -68,9 +68,6 @@ class AccuWeatherEntity( def __init__(self, coordinator: AccuWeatherDataUpdateCoordinator) -> None: """Initialize.""" super().__init__(coordinator) - # Coordinator data is used also for sensors which don't have units automatically - # converted, hence the weather entity's native units follow the configured unit - # system self._attr_native_precipitation_unit = UnitOfPrecipitationDepth.MILLIMETERS self._attr_native_pressure_unit = UnitOfPressure.HPA self._attr_native_temperature_unit = UnitOfTemperature.CELSIUS