mirror of
https://github.com/home-assistant/core.git
synced 2025-11-04 16:39:28 +00:00
Move SensorEntity last in the inheritance tree (#48230)
This commit is contained in:
@@ -34,7 +34,7 @@ async def async_setup_entry(hass, config_entry, async_add_entities):
|
||||
async_add_entities(entities)
|
||||
|
||||
|
||||
class AbodeSensor(SensorEntity, AbodeDevice):
|
||||
class AbodeSensor(AbodeDevice, SensorEntity):
|
||||
"""A sensor implementation for Abode devices."""
|
||||
|
||||
def __init__(self, data, device, sensor_type):
|
||||
|
||||
Reference in New Issue
Block a user