Remove unneeded update_before_add from nexia (#64187)

This commit is contained in:
J. Nick Koston 2022-01-16 03:48:04 -10:00 committed by GitHub
parent ea96e7e512
commit 9c73e66cbe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -36,7 +36,7 @@ async def async_setup_entry(
) )
) )
async_add_entities(entities, True) async_add_entities(entities)
class NexiaBinarySensor(NexiaThermostatEntity, BinarySensorEntity): class NexiaBinarySensor(NexiaThermostatEntity, BinarySensorEntity):

View File

@ -31,7 +31,7 @@ async def async_setup_entry(
entities.append(NexiaAutomationScene(coordinator, automation)) entities.append(NexiaAutomationScene(coordinator, automation))
async_add_entities(entities, True) async_add_entities(entities)
class NexiaAutomationScene(NexiaEntity, Scene): class NexiaAutomationScene(NexiaEntity, Scene):

View File

@ -149,7 +149,7 @@ async def async_setup_entry(
) )
) )
async_add_entities(entities, True) async_add_entities(entities)
class NexiaThermostatSensor(NexiaThermostatEntity, SensorEntity): class NexiaThermostatSensor(NexiaThermostatEntity, SensorEntity):