From 176fd39e0bd2be92ef351e5b605f53ee29f56c2c Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Thu, 26 Aug 2021 23:37:28 -0500 Subject: [PATCH] Fix lifx model to be a string (#55309) Fixes #55307 --- homeassistant/components/lifx/light.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/lifx/light.py b/homeassistant/components/lifx/light.py index 30c0ffbe850..a4412d042a8 100644 --- a/homeassistant/components/lifx/light.py +++ b/homeassistant/components/lifx/light.py @@ -470,7 +470,7 @@ class LIFXLight(LightEntity): model = product_map.get(self.bulb.product) or self.bulb.product if model is not None: - info["model"] = model + info["model"] = str(model) return info