mirror of
https://github.com/home-assistant/core.git
synced 2025-11-05 17:09:32 +00:00
deCONZ - Make sensors sorted on creation for deterministic order (#30569)
* Make sensors sorted on creation for deterministic order * Martins comment
This commit is contained in:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user