diff --git a/homeassistant/helpers/entity_platform.py b/homeassistant/helpers/entity_platform.py index 067d6430c9f..b7dadcf0f67 100644 --- a/homeassistant/helpers/entity_platform.py +++ b/homeassistant/helpers/entity_platform.py @@ -569,7 +569,8 @@ class EntityPlatform: self._get_parallel_updates_semaphore(hasattr(entity, "update")), ) - # Update properties before we generate the entity_id + # Update properties before we generate the entity_id. This will happen + # also for disabled entities. if update_before_add: try: await entity.async_device_update(warning=False)