Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions homeassistant/components/light/hue.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ async def async_update_items(hass, bridge, async_add_entities,

for light_id, light in current.items():
if light_id not in progress_waiting:
light.async_schedule_update_ha_state()
light.async_schedule_update_ha_state()

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

trailing whitespace


return

Expand Down Expand Up @@ -298,7 +298,8 @@ def effect_list(self):
@property
def device_info(self):
"""Return the device info."""
if self.light.type in ('LightGroup', 'Room'):
if self.light.type in ('LightGroup', 'Room',

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

trailing whitespace

'Luminaire', 'LightSource'):
return None

return {
Expand Down