Fix lifx model to be a string (#55309)

Fixes #55307
This commit is contained in:
J. Nick Koston 2021-08-26 23:37:28 -05:00 committed by GitHub
parent cd0ae66d58
commit 176fd39e0b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -470,7 +470,7 @@ class LIFXLight(LightEntity):
model = product_map.get(self.bulb.product) or self.bulb.product model = product_map.get(self.bulb.product) or self.bulb.product
if model is not None: if model is not None:
info["model"] = model info["model"] = str(model)
return info return info