From 03a9e3284c5cb1e60a96ba54d57e7e5a7ab1edb0 Mon Sep 17 00:00:00 2001 From: Colin Harrington Date: Sat, 28 Mar 2020 15:21:28 -0500 Subject: [PATCH] Fix broken supported_features in Plum Lightpad (#33319) --- homeassistant/components/plum_lightpad/light.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/plum_lightpad/light.py b/homeassistant/components/plum_lightpad/light.py index 63fa67f4da5..e19035789b8 100644 --- a/homeassistant/components/plum_lightpad/light.py +++ b/homeassistant/components/plum_lightpad/light.py @@ -74,7 +74,7 @@ class PlumLight(Light): """Flag supported features.""" if self._load.dimmable: return SUPPORT_BRIGHTNESS - return None + return 0 async def async_turn_on(self, **kwargs): """Turn the light on."""