Fix Hue activate scene ()

pull/49546/head^2
Paulus Schoutsen 2021-04-22 10:29:11 -07:00 committed by GitHub
parent 9879b7becf
commit 9fe0c96474
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
homeassistant/components/hue

View File

@ -153,7 +153,7 @@ def _register_services(hass):
# Call the set scene function on each bridge
tasks = [
bridge.hue_activate_scene(
call.data, updated=skip_reload, hide_warnings=skip_reload
call.data, skip_reload=skip_reload, hide_warnings=skip_reload
)
for bridge in hass.data[DOMAIN].values()
if isinstance(bridge, HueBridge)