Skip to content

Commit

Permalink
Fix #1017
Browse files Browse the repository at this point in the history
  • Loading branch information
rwjack committed Aug 24, 2024
1 parent 8e8c520 commit 7809178
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion custom_components/adaptive_lighting/switch.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@
callback,
)
from homeassistant.helpers import entity_platform, entity_registry
from homeassistant.helpers.entity_component import async_update_entity

if [MAJOR_VERSION, MINOR_VERSION] < [2023, 9]:
from homeassistant.helpers.entity import DeviceInfo
Expand Down Expand Up @@ -2489,7 +2490,7 @@ async def significant_change(
# Ensure HASS is correctly updating your light's state with
# light.turn_on calls if any problems arise. This
# can happen e.g. using zigbee2mqtt with 'report: false' in device settings.
await self.hass.helpers.entity_component.async_update_entity(light)
await async_update_entity(hass, light)
refreshed_state = self.hass.states.get(light)
assert refreshed_state is not None

Expand Down

0 comments on commit 7809178

Please sign in to comment.