Add and use percentage constant (#32094)
* Add and use percentage constant * Fix pylint error and broken test
This commit is contained in:
parent
c7f128f286
commit
f1a0ca7cd3
155 changed files with 735 additions and 459 deletions
|
@ -16,6 +16,7 @@ from homeassistant.const import (
|
|||
STATE_CLOSED,
|
||||
STATE_OPEN,
|
||||
TEMP_CELSIUS,
|
||||
UNIT_PERCENTAGE,
|
||||
)
|
||||
import homeassistant.helpers.config_validation as cv
|
||||
|
||||
|
@ -36,7 +37,7 @@ SENSOR_TYPE_WINDOWHANDLE = "windowhandle"
|
|||
SENSOR_TYPES = {
|
||||
SENSOR_TYPE_HUMIDITY: {
|
||||
"name": "Humidity",
|
||||
"unit": "%",
|
||||
"unit": UNIT_PERCENTAGE,
|
||||
"icon": "mdi:water-percent",
|
||||
"class": DEVICE_CLASS_HUMIDITY,
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue