Skip to content

Commit

Permalink
fix typo on unit of measurement
Browse files Browse the repository at this point in the history
  • Loading branch information
Khole Jones committed Jul 13, 2022
1 parent 8f90a18 commit 9c0514f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions custom_components/hive/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@
key="Heating_Current_Temperature",
device_class=SensorDeviceClass.TEMPERATURE,
state_class=SensorStateClass.MEASUREMENT,
unit_of_measurement=TEMP_CELSIUS,
icon="mdi:thermometer"
native_unit_of_measurement=TEMP_CELSIUS,
icon="mdi:thermometer",
),
SensorEntityDescription(
key="Heating_Target_Temperature",
device_class=SensorDeviceClass.TEMPERATURE,
state_class=SensorStateClass.MEASUREMENT,
unit_of_measurement=TEMP_CELSIUS,
icon="mdi:thermometer"
native_unit_of_measurement=TEMP_CELSIUS,
icon="mdi:thermometer",
),
SensorEntityDescription(
key="Heating_State",
Expand Down

0 comments on commit 9c0514f

Please sign in to comment.