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
|
@ -8,6 +8,7 @@ from homeassistant.const import (
|
|||
STATE_OFF,
|
||||
TEMP_CELSIUS,
|
||||
TEMP_FAHRENHEIT,
|
||||
UNIT_PERCENTAGE,
|
||||
)
|
||||
|
||||
from . import CONF_SENSORS, DATA_NEST, DATA_NEST_CONFIG, NestSensorDevice
|
||||
|
@ -41,7 +42,7 @@ _VALID_SENSOR_TYPES = (
|
|||
+ STRUCTURE_CAMERA_SENSOR_TYPES
|
||||
)
|
||||
|
||||
SENSOR_UNITS = {"humidity": "%"}
|
||||
SENSOR_UNITS = {"humidity": UNIT_PERCENTAGE}
|
||||
|
||||
SENSOR_DEVICE_CLASSES = {"humidity": DEVICE_CLASS_HUMIDITY}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue