From 209cd6b169f63c04a2626d512d11a23f7363e5ff Mon Sep 17 00:00:00 2001 From: Parker Brown <17183625+parkerbxyz@users.noreply.github.com> Date: Thu, 6 Feb 2025 05:01:43 +0000 Subject: [PATCH] Rename `threshold_level` key to `status` --- homeassistant/components/aranet/sensor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/aranet/sensor.py b/homeassistant/components/aranet/sensor.py index 1b9552f3641..778d6f7f220 100644 --- a/homeassistant/components/aranet/sensor.py +++ b/homeassistant/components/aranet/sensor.py @@ -74,8 +74,8 @@ SENSOR_DESCRIPTIONS = { native_unit_of_measurement=UnitOfPressure.HPA, state_class=SensorStateClass.MEASUREMENT, ), - "threshold_level": AranetSensorEntityDescription( - key="status", + "status": AranetSensorEntityDescription( + key="threshold_level", name="Threshold Level", device_class=SensorDeviceClass.ENUM, options=[status.name for status in Color],