12 lines
454 B
Python
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)
|