Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions homeassistant/components/yeelight/light.py
Original file line number Diff line number Diff line change
Expand Up @@ -822,7 +822,7 @@ def _predefined_effects(self):


class YeelightWhiteTempWithoutNightlightSwitch(
YeelightGenericLight, YeelightWhiteTempLightsupport
YeelightWhiteTempLightsupport, YeelightGenericLight
):
"""White temp light, when nightlight switch is not set to light."""

Expand All @@ -831,7 +831,7 @@ def _brightness_property(self):
return "current_brightness"


class YeelightWithNightLight(YeelightGenericLight, YeelightWhiteTempLightsupport):
class YeelightWithNightLight(YeelightWhiteTempLightsupport, YeelightGenericLight):
"""Representation of a Yeelight with nightlight support.

It represents case when nightlight switch is set to light.
Expand Down