Skip to content
Snippets Groups Projects
Unverified Commit 1c25468b authored by shred86's avatar shred86 Committed by GitHub
Browse files

Add await to coroutines in Abode (#33664)

parent c3c7b68c
No related branches found
No related tags found
No related merge requests found
......@@ -292,7 +292,7 @@ class AbodeEntity(Entity):
async def async_added_to_hass(self):
"""Subscribe to Abode connection status updates."""
self.hass.async_add_executor_job(
await self.hass.async_add_executor_job(
self._data.abode.events.add_connection_status_callback,
self.unique_id,
self._update_connection_status,
......@@ -302,7 +302,7 @@ class AbodeEntity(Entity):
async def async_will_remove_from_hass(self):
"""Unsubscribe from Abode connection status updates."""
self.hass.async_add_executor_job(
await self.hass.async_add_executor_job(
self._data.abode.events.remove_connection_status_callback, self.unique_id,
)
......@@ -323,7 +323,7 @@ class AbodeDevice(AbodeEntity):
async def async_added_to_hass(self):
"""Subscribe to device events."""
await super().async_added_to_hass()
self.hass.async_add_executor_job(
await self.hass.async_add_executor_job(
self._data.abode.events.add_device_callback,
self._device.device_id,
self._update_callback,
......@@ -332,7 +332,7 @@ class AbodeDevice(AbodeEntity):
async def async_will_remove_from_hass(self):
"""Unsubscribe from device events."""
await super().async_will_remove_from_hass()
self.hass.async_add_executor_job(
await self.hass.async_add_executor_job(
self._data.abode.events.remove_all_device_callbacks, self._device.device_id
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment