From b91e9edd1604307b8bad5895fa10f971e9c61855 Mon Sep 17 00:00:00 2001 From: Christophe Gagnier Date: Fri, 26 Jan 2024 03:05:36 -0500 Subject: [PATCH] Remove "max_current" from TechnoVE sensors (#108898) --- homeassistant/components/technove/sensor.py | 9 --------- homeassistant/components/technove/strings.json | 3 --- 2 files changed, 12 deletions(-) diff --git a/homeassistant/components/technove/sensor.py b/homeassistant/components/technove/sensor.py index 99cdc62ceee..38d0eeabe49 100644 --- a/homeassistant/components/technove/sensor.py +++ b/homeassistant/components/technove/sensor.py @@ -57,15 +57,6 @@ SENSORS: tuple[TechnoVESensorEntityDescription, ...] = ( entity_category=EntityCategory.DIAGNOSTIC, value_fn=lambda station: station.info.voltage_out, ), - TechnoVESensorEntityDescription( - key="max_current", - translation_key="max_current", - native_unit_of_measurement=UnitOfElectricCurrent.AMPERE, - device_class=SensorDeviceClass.CURRENT, - state_class=SensorStateClass.MEASUREMENT, - entity_category=EntityCategory.DIAGNOSTIC, - value_fn=lambda station: station.info.max_current, - ), TechnoVESensorEntityDescription( key="max_station_current", translation_key="max_station_current", diff --git a/homeassistant/components/technove/strings.json b/homeassistant/components/technove/strings.json index 39a86ad29f8..6f7cb0d9f6b 100644 --- a/homeassistant/components/technove/strings.json +++ b/homeassistant/components/technove/strings.json @@ -32,9 +32,6 @@ "voltage_out": { "name": "Output voltage" }, - "max_current": { - "name": "Max current" - }, "max_station_current": { "name": "Max station current" },