diff --git a/homeassistant/components/myuplink/sensor.py b/homeassistant/components/myuplink/sensor.py index 752fab13448..b9e0ccd2a1e 100644 --- a/homeassistant/components/myuplink/sensor.py +++ b/homeassistant/components/myuplink/sensor.py @@ -206,7 +206,10 @@ class MyUplinkDevicePointSensor(MyUplinkEntity, SensorEntity): # Internal properties self.point_id = device_point.parameter_id - self._attr_name = device_point.parameter_name.replace("\u002d", "") + # Remove soft hyphens and replace dash to hard hyphen + self._attr_name = device_point.parameter_name.replace("\u002d", "").replace( + "-", "\u2011" + ) if entity_description is not None: self.entity_description = entity_description