Fix BroadlinkThermostat inheritance order (#110927)

fix BroadlinkThermostat inheritance order
This commit is contained in:
Kevin Stillhammer 2024-02-19 10:44:45 +01:00 committed by GitHub
parent fd1f712d67
commit 03e8482aa9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -30,7 +30,7 @@ async def async_setup_entry(
async_add_entities([BroadlinkThermostat(device)])
class BroadlinkThermostat(ClimateEntity, BroadlinkEntity):
class BroadlinkThermostat(BroadlinkEntity, ClimateEntity):
"""Representation of a Broadlink Hysen climate entity."""
_attr_has_entity_name = True