diff --git a/homeassistant/components/deconz/deconz_device.py b/homeassistant/components/deconz/deconz_device.py index 0c5cbeef1fba927835ff761f78bba6d24b32e877..6923c93dd6f7a00ba0a77d98f3e891d0662262d2 100644 --- a/homeassistant/components/deconz/deconz_device.py +++ b/homeassistant/components/deconz/deconz_device.py @@ -26,10 +26,9 @@ class DeconzDevice(Entity): async def async_will_remove_from_hass(self) -> None: """Disconnect device object when removed.""" - if self.unsub_dispatcher is not None: - self.unsub_dispatcher() self._device.remove_callback(self.async_update_callback) - self._device = None + del self.gateway.deconz_ids[self.entity_id] + self.unsub_dispatcher() @callback def async_update_callback(self, reason):