From 1e256e61228d720edb3b6b7d27ace1dc9449d8c6 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Fri, 16 Oct 2020 09:24:12 -0500 Subject: [PATCH] Remove unneeded async_add_job from homematic (#41855) --- homeassistant/components/homematic/entity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/homematic/entity.py b/homeassistant/components/homematic/entity.py index bd0f8cf66dd..a391fa80461 100644 --- a/homeassistant/components/homematic/entity.py +++ b/homeassistant/components/homematic/entity.py @@ -48,7 +48,7 @@ class HMDevice(Entity): async def async_added_to_hass(self): """Load data init callbacks.""" - await self.hass.async_add_job(self._subscribe_homematic_events) + self._subscribe_homematic_events() @property def unique_id(self):