diff --git a/homeassistant/components/elgato/light.py b/homeassistant/components/elgato/light.py index fb54f916114d..3d5ba506df96 100644 --- a/homeassistant/components/elgato/light.py +++ b/homeassistant/components/elgato/light.py @@ -100,7 +100,7 @@ class ElgatoLight(ElgatoEntity, LightEntity): async def async_turn_off(self, **kwargs: Any) -> None: """Turn off the light.""" await self.coordinator.client.light(on=False) - await self.coordinator.async_request_refresh() + await self.coordinator.async_refresh() @elgato_exception_handler @override @@ -143,7 +143,7 @@ class ElgatoLight(ElgatoEntity, LightEntity): saturation=saturation, temperature=temperature, ) - await self.coordinator.async_request_refresh() + await self.coordinator.async_refresh() @elgato_exception_handler async def async_identify(self) -> None: