From 12085e61528edd0fa707b68cdb331eaf2c8fa183 Mon Sep 17 00:00:00 2001 From: starkillerOG Date: Thu, 2 Oct 2025 23:10:27 +0200 Subject: [PATCH] Improve Reolink docstrings (#153498) --- homeassistant/components/reolink/entity.py | 2 +- homeassistant/components/reolink/sensor.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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