Rename ClimateDevice to ClimateEntity (#34591)

This commit is contained in:
Erik Montnemery 2020-04-25 18:04:03 +02:00 committed by GitHub
parent b30d117e7d
commit 29bc93ea98
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
68 changed files with 177 additions and 150 deletions

View file

@ -3,7 +3,7 @@
import logging
from typing import Optional, Tuple
from homeassistant.components.climate import ClimateDevice
from homeassistant.components.climate import ClimateEntity
from homeassistant.components.climate.const import (
ATTR_TARGET_TEMP_HIGH,
ATTR_TARGET_TEMP_LOW,
@ -149,7 +149,7 @@ def get_device(hass, values, **kwargs):
return None
class ZWaveClimateBase(ZWaveDeviceEntity, ClimateDevice):
class ZWaveClimateBase(ZWaveDeviceEntity, ClimateEntity):
"""Representation of a Z-Wave Climate device."""
def __init__(self, values, temp_unit):