deCONZ - Make sensors sorted on creation for deterministic order (#30569)
* Make sensors sorted on creation for deterministic order * Martins commentpull/30579/head
parent
31553796da
commit
0d48d682dc
|
@ -45,7 +45,9 @@ async def async_setup_entry(hass, config_entry, async_add_entities):
|
|||
)
|
||||
)
|
||||
|
||||
async_add_sensor(gateway.api.sensors.values())
|
||||
async_add_sensor(
|
||||
[gateway.api.sensors[key] for key in sorted(gateway.api.sensors, key=int)]
|
||||
)
|
||||
|
||||
|
||||
class DeconzBinarySensor(DeconzDevice, BinarySensorDevice):
|
||||
|
|
|
@ -88,7 +88,9 @@ async def async_setup_entry(hass, config_entry, async_add_entities):
|
|||
)
|
||||
)
|
||||
|
||||
async_add_sensor(gateway.api.sensors.values())
|
||||
async_add_sensor(
|
||||
[gateway.api.sensors[key] for key in sorted(gateway.api.sensors, key=int)]
|
||||
)
|
||||
|
||||
|
||||
class DeconzSensor(DeconzDevice):
|
||||
|
|
Loading…
Reference in New Issue