mirror of
https://github.com/home-assistant/core.git
synced 2025-08-03 12:45:28 +02:00
Remove unneeded update_before_add from nexia (#64187)
This commit is contained in:
@@ -36,7 +36,7 @@ async def async_setup_entry(
|
||||
)
|
||||
)
|
||||
|
||||
async_add_entities(entities, True)
|
||||
async_add_entities(entities)
|
||||
|
||||
|
||||
class NexiaBinarySensor(NexiaThermostatEntity, BinarySensorEntity):
|
||||
|
@@ -31,7 +31,7 @@ async def async_setup_entry(
|
||||
|
||||
entities.append(NexiaAutomationScene(coordinator, automation))
|
||||
|
||||
async_add_entities(entities, True)
|
||||
async_add_entities(entities)
|
||||
|
||||
|
||||
class NexiaAutomationScene(NexiaEntity, Scene):
|
||||
|
@@ -149,7 +149,7 @@ async def async_setup_entry(
|
||||
)
|
||||
)
|
||||
|
||||
async_add_entities(entities, True)
|
||||
async_add_entities(entities)
|
||||
|
||||
|
||||
class NexiaThermostatSensor(NexiaThermostatEntity, SensorEntity):
|
||||
|
Reference in New Issue
Block a user