Fix unit of current elecricity #158

This commit is contained in:
Andre Basche 2024-03-30 23:13:19 +01:00
parent 0e166f3c66
commit 6d2a6ce2e9

View File

@ -18,7 +18,6 @@ from homeassistant.const import (
UnitOfEnergy, UnitOfEnergy,
UnitOfVolume, UnitOfVolume,
UnitOfMass, UnitOfMass,
UnitOfPower,
UnitOfTime, UnitOfTime,
UnitOfTemperature, UnitOfTemperature,
) )
@ -84,7 +83,7 @@ SENSORS: dict[str, tuple[SensorEntityDescription, ...]] = {
name="Current Electricity Used", name="Current Electricity Used",
state_class=SensorStateClass.MEASUREMENT, state_class=SensorStateClass.MEASUREMENT,
device_class=SensorDeviceClass.POWER, device_class=SensorDeviceClass.POWER,
native_unit_of_measurement=UnitOfPower.KILO_WATT, native_unit_of_measurement=UnitOfEnergy.KILO_WATT_HOUR,
icon="mdi:lightning-bolt", icon="mdi:lightning-bolt",
translation_key="energy_current", translation_key="energy_current",
), ),