Don't run unnecessary methods in executor pool (#14853)
* Don't run unnecessary methods in executor pool * Lint * Lint 2
This commit is contained in:
parent
50321a29b5
commit
90a51160c4
13 changed files with 23 additions and 32 deletions
|
@ -74,6 +74,7 @@ class VerisureThermometer(Entity):
|
|||
"""Return the unit of measurement of this entity."""
|
||||
return TEMP_CELSIUS
|
||||
|
||||
# pylint: disable=no-self-use
|
||||
def update(self):
|
||||
"""Update the sensor."""
|
||||
hub.update_overview()
|
||||
|
@ -112,6 +113,7 @@ class VerisureHygrometer(Entity):
|
|||
"""Return the unit of measurement of this entity."""
|
||||
return '%'
|
||||
|
||||
# pylint: disable=no-self-use
|
||||
def update(self):
|
||||
"""Update the sensor."""
|
||||
hub.update_overview()
|
||||
|
@ -150,6 +152,7 @@ class VerisureMouseDetection(Entity):
|
|||
"""Return the unit of measurement of this entity."""
|
||||
return 'Mice'
|
||||
|
||||
# pylint: disable=no-self-use
|
||||
def update(self):
|
||||
"""Update the sensor."""
|
||||
hub.update_overview()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue