diff --git a/homeassistant/components/youless/sensor.py b/homeassistant/components/youless/sensor.py index 22fecfe1ec6..0b081ab15a2 100644 --- a/homeassistant/components/youless/sensor.py +++ b/homeassistant/components/youless/sensor.py @@ -82,14 +82,6 @@ class YoulessBaseSensor(CoordinatorEntity, SensorEntity): """Property to get the underlying sensor object.""" return None - @property - def native_unit_of_measurement(self) -> str | None: - """Return the unit of measurement for the sensor.""" - if self.get_sensor is None: - return None - - return self.get_sensor.unit_of_measurement - @property def native_value(self) -> StateType: """Determine the state value, only if a sensor is initialized."""