Skip to content

Commit

Permalink
Fix rebase error
Browse files Browse the repository at this point in the history
  • Loading branch information
balloob committed Mar 11, 2018
1 parent 3a79f0d commit fe9fd1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions homeassistant/components/light/hue.py
Expand Up @@ -158,13 +158,13 @@ def is_on(self):
"""Return true if device is on."""
if self.is_group:
return self.light.state['any_on']
self.light.state['on']
return self.light.state['on']

@property
def available(self):
"""Return if light is available."""
return (self.is_group or self.allow_unreachable or
self.info['state']['reachable'])
self.light.state['reachable'])

@property
def supported_features(self):
Expand Down

0 comments on commit fe9fd1f

Please sign in to comment.