From d7890f35bef45bd9d4aa4cc3a1af33849939ad40 Mon Sep 17 00:00:00 2001 From: cgtobi Date: Tue, 6 Oct 2020 14:42:50 +0200 Subject: [PATCH] Fix Netatmo rain sensor naming (#41326) --- homeassistant/components/netatmo/sensor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/netatmo/sensor.py b/homeassistant/components/netatmo/sensor.py index af41e01c7df..d4fe642810d 100644 --- a/homeassistant/components/netatmo/sensor.py +++ b/homeassistant/components/netatmo/sensor.py @@ -55,7 +55,7 @@ SENSOR_TYPES = { "humidity": ["Humidity", PERCENTAGE, None, DEVICE_CLASS_HUMIDITY], "rain": ["Rain", LENGTH_MILLIMETERS, "mdi:weather-rainy", None], "sum_rain_1": ["Rain last hour", LENGTH_MILLIMETERS, "mdi:weather-rainy", None], - "sum_rain_24": ["Rain last 24h", LENGTH_MILLIMETERS, "mdi:weather-rainy", None], + "sum_rain_24": ["Rain today", LENGTH_MILLIMETERS, "mdi:weather-rainy", None], "battery_vp": ["Battery", "", "mdi:battery", None], "battery_lvl": ["Battery Level", "", "mdi:battery", None], "battery_percent": ["Battery Percent", PERCENTAGE, None, DEVICE_CLASS_BATTERY],