mirror of
https://github.com/home-assistant/core.git
synced 2025-11-08 10:29:27 +00:00
Move SensorEntity last in the inheritance tree (#48230)
This commit is contained in:
@@ -49,7 +49,7 @@ async def async_setup_entry(hass, config_entry, async_add_entities):
|
||||
async_add_entities(sensors, False)
|
||||
|
||||
|
||||
class AccuWeatherSensor(SensorEntity, CoordinatorEntity):
|
||||
class AccuWeatherSensor(CoordinatorEntity, SensorEntity):
|
||||
"""Define an AccuWeather entity."""
|
||||
|
||||
def __init__(self, name, kind, coordinator, forecast_day=None):
|
||||
|
||||
Reference in New Issue
Block a user