Files
versatile_thermostat/custom_components/versatile_thermostat/thermostat_climate.py
2023-10-22 16:54:38 +00:00

12 lines
454 B
Python

""" A climate over switch classe """
from homeassistant.core import HomeAssistant
from .base_thermostat import BaseThermostat
class ThermostatOverClimate(BaseThermostat):
"""Representation of a base class for a Versatile Thermostat over a climate"""
def __init__(self, hass: HomeAssistant, unique_id, name, entry_infos) -> None:
"""Initialize the thermostat over switch."""
super().__init__(hass, unique_id, name, entry_infos)