From 01a754071e699b94516a0ae3340d4cf096c76238 Mon Sep 17 00:00:00 2001 From: Alexander Rey Date: Thu, 22 Aug 2024 14:16:22 -0400 Subject: [PATCH] Revert change to temperate low time --- custom_components/pirateweather/const.py | 2 +- custom_components/pirateweather/sensor.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/custom_components/pirateweather/const.py b/custom_components/pirateweather/const.py index 10c3090..99a36e5 100644 --- a/custom_components/pirateweather/const.py +++ b/custom_components/pirateweather/const.py @@ -126,7 +126,7 @@ "apparent_temperature_high_time": "Daytime High Apparent Temperature Time", "apparent_temperature_low_time": "Overnight Low Apparent Temperature Time", "temperature_high_time": "Daytime High Temperature Time", - "temperature_min_time": "Overnight Low Temperature Time", + "temperature_min_time": "Low Temperature Time", "hrrr_subh_update_time": "HRRR SubH Update Time", "hrrr_0_18_update_time": "HRRR 0-18 Update Time", "nbm_update_time": "NBM Update Time", diff --git a/custom_components/pirateweather/sensor.py b/custom_components/pirateweather/sensor.py index fcf43d2..ff9b186 100644 --- a/custom_components/pirateweather/sensor.py +++ b/custom_components/pirateweather/sensor.py @@ -534,7 +534,7 @@ class PirateWeatherSensorEntityDescription(SensorEntityDescription): forecast_mode=["daily"], ), "temperature_min_time": PirateWeatherSensorEntityDescription( - key="temperature_low_time", + key="temperature_min_time", name="Daily Low Temperature Time", icon="mdi:clock-time-three-outline", device_class=SensorDeviceClass.TIMESTAMP,