1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 12:59:34 +00:00

Spelling fixes (#11940)

This commit is contained in:
Ville Skyttä
2018-01-27 21:58:27 +02:00
committed by Paulus Schoutsen
parent 94316f07a2
commit 55ee8959ba
80 changed files with 110 additions and 110 deletions

View File

@@ -268,7 +268,7 @@ class Entity(object):
self.entity_id, state, attr, self.force_update)
def schedule_update_ha_state(self, force_refresh=False):
"""Schedule a update ha state change task.
"""Schedule an update ha state change task.
That avoid executor dead looks.
"""
@@ -276,7 +276,7 @@ class Entity(object):
@callback
def async_schedule_update_ha_state(self, force_refresh=False):
"""Schedule a update ha state change task."""
"""Schedule an update ha state change task."""
self.hass.async_add_job(self.async_update_ha_state(force_refresh))
@asyncio.coroutine