Add and use percentage constant (#32094)

* Add and use percentage constant

* Fix pylint error and broken test
This commit is contained in:
springstan 2020-02-28 20:46:48 +01:00 committed by GitHub
parent c7f128f286
commit f1a0ca7cd3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
155 changed files with 735 additions and 459 deletions

View file

@ -1,7 +1,7 @@
"""Support for Verisure sensors."""
import logging
from homeassistant.const import TEMP_CELSIUS
from homeassistant.const import TEMP_CELSIUS, UNIT_PERCENTAGE
from homeassistant.helpers.entity import Entity
from . import CONF_HYDROMETERS, CONF_MOUSE, CONF_THERMOMETERS, HUB as hub
@ -130,7 +130,7 @@ class VerisureHygrometer(Entity):
@property
def unit_of_measurement(self):
"""Return the unit of measurement of this entity."""
return "%"
return UNIT_PERCENTAGE
# pylint: disable=no-self-use
def update(self):