Skip to content

Commit

Permalink
Fix eq3btsmart (#25238)
Browse files Browse the repository at this point in the history
  • Loading branch information
pvizeli committed Jul 18, 2019
1 parent 75ad5f8 commit e13e437
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions homeassistant/components/eq3btsmart/climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ def setup_platform(hass, config, add_entities, discovery_info=None):

for name, device_cfg in config[CONF_DEVICES].items():
mac = device_cfg[CONF_MAC]
devices.append(EQ3BTSmartThermostat(mac, name), True)
devices.append(EQ3BTSmartThermostat(mac, name))

add_entities(devices)
add_entities(devices, True)


class EQ3BTSmartThermostat(ClimateDevice):
Expand Down

0 comments on commit e13e437

Please sign in to comment.