diff --git a/homeassistant/components/overkiz/entity.py b/homeassistant/components/overkiz/entity.py index f1e3d96a219..16ea12a5d96 100644 --- a/homeassistant/components/overkiz/entity.py +++ b/homeassistant/components/overkiz/entity.py @@ -119,3 +119,5 @@ class OverkizDescriptiveEntity(OverkizEntity): # In case of sub device, use the provided label # and append the name of the type of entity self._attr_name = f"{self.device.label} {description.name}" + elif isinstance(description.name, str): + self._attr_name = description.name