1
mirror of https://github.com/home-assistant/core synced 2024-07-27 18:58:57 +02:00

iaqualink: fix supported_effects reference after function was renamed (#82383)

Fix supported_effects reference
This commit is contained in:
Florent Thoumie 2022-11-19 11:48:45 -08:00 committed by GitHub
parent ea98f0e9e8
commit 6de887b9b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -85,7 +85,7 @@ class HassAqualinkLight(AqualinkEntity, LightEntity):
@property
def effect_list(self) -> list:
"""Return supported light effects."""
return list(self.dev.supported_light_effects)
return list(self.dev.supported_effects)
@property
def color_mode(self) -> ColorMode: