diff --git a/homeassistant/components/reolink/entity.py b/homeassistant/components/reolink/entity.py index dcda6b843ad..c180e5f77b2 100644 --- a/homeassistant/components/reolink/entity.py +++ b/homeassistant/components/reolink/entity.py @@ -252,7 +252,7 @@ class ReolinkHostChimeCoordinatorEntity(ReolinkHostCoordinatorEntity): chime: Chime, coordinator: DataUpdateCoordinator[None] | None = None, ) -> None: - """Initialize ReolinkChimeCoordinatorEntity for a chime.""" + """Initialize ReolinkHostChimeCoordinatorEntity for a chime.""" super().__init__(reolink_data, coordinator) self._channel = chime.channel self._chime = chime diff --git a/homeassistant/components/reolink/sensor.py b/homeassistant/components/reolink/sensor.py index a0939046a17..fe9744543c0 100644 --- a/homeassistant/components/reolink/sensor.py +++ b/homeassistant/components/reolink/sensor.py @@ -284,7 +284,7 @@ class ReolinkHostSensorEntity(ReolinkHostCoordinatorEntity, SensorEntity): class ReolinkHddSensorEntity(ReolinkHostCoordinatorEntity, SensorEntity): - """Base sensor class for Reolink host sensors.""" + """Base sensor class for Reolink storage device sensors.""" entity_description: ReolinkSensorEntityDescription @@ -294,7 +294,7 @@ class ReolinkHddSensorEntity(ReolinkHostCoordinatorEntity, SensorEntity): hdd_index: int, entity_description: ReolinkSensorEntityDescription, ) -> None: - """Initialize Reolink host sensor.""" + """Initialize Reolink storage device sensor.""" self.entity_description = entity_description super().__init__(reolink_data) self._hdd_index = hdd_index