Skip to content

Commit

Permalink
Fix BroadlinkThermostat inheritance order (#110927)
Browse files Browse the repository at this point in the history
fix BroadlinkThermostat inheritance order
  • Loading branch information
eifinger committed Feb 19, 2024
1 parent fd1f712 commit 03e8482
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homeassistant/components/broadlink/climate.py
Expand Up @@ -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
Expand Down

0 comments on commit 03e8482

Please sign in to comment.