add_devices -> add_entities (#16171)
* add_devices -> add_entities * Lint * PyLint * Revert external method in scsgate
This commit is contained in:
parent
37fd438717
commit
994b829cb4
839 changed files with 2121 additions and 2008 deletions
|
@ -33,7 +33,7 @@ def get_temper_devices():
|
|||
return TemperHandler().get_devices()
|
||||
|
||||
|
||||
def setup_platform(hass, config, add_devices, discovery_info=None):
|
||||
def setup_platform(hass, config, add_entities, discovery_info=None):
|
||||
"""Set up the Temper sensors."""
|
||||
temp_unit = hass.config.units.temperature_unit
|
||||
name = config.get(CONF_NAME)
|
||||
|
@ -47,7 +47,7 @@ def setup_platform(hass, config, add_devices, discovery_info=None):
|
|||
if idx != 0:
|
||||
name = name + '_' + str(idx)
|
||||
TEMPER_SENSORS.append(TemperSensor(dev, temp_unit, name, scaling))
|
||||
add_devices(TEMPER_SENSORS)
|
||||
add_entities(TEMPER_SENSORS)
|
||||
|
||||
|
||||
def reset_devices():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue