1
0
mirror of https://github.com/home-assistant/core.git synced 2026-04-02 08:26:41 +01:00

Rename component to integration in Radio Thermostat (#167033)

This commit is contained in:
smarthome-10
2026-04-01 09:49:34 +02:00
committed by GitHub
parent b0201e893e
commit 9cf6911b7f
3 changed files with 5 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
"""The radiotherm component."""
"""The Radio Thermostat integration."""
from __future__ import annotations

View File

@@ -1,4 +1,4 @@
"""The radiotherm component data."""
"""The Radio Thermostat integration data."""
from __future__ import annotations
@@ -16,7 +16,7 @@ from .const import TIMEOUT
@dataclass
class RadioThermUpdate:
"""An update from a radiotherm device."""
"""An update from a Radio Thermostat device."""
tstat: dict[str, Any]
humidity: int | None

View File

@@ -1,4 +1,4 @@
"""The radiotherm integration base entity."""
"""The Radio Thermostat integration base entity."""
from abc import abstractmethod
@@ -12,7 +12,7 @@ from .data import RadioThermUpdate
class RadioThermostatEntity(CoordinatorEntity[RadioThermUpdateCoordinator]):
"""Base class for radiotherm entities."""
"""Base class for Radio Thermostat entities."""
_attr_has_entity_name = True