Skip to content
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.

Commit

Permalink
fix: switch to climate entity
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Claes committed Jun 12, 2020
1 parent 4efebb3 commit 2a27463
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions custom_components/climate_group/climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

import homeassistant.helpers.config_validation as cv
from homeassistant.components import climate
from homeassistant.components.climate import ClimateDevice, PLATFORM_SCHEMA
from homeassistant.components.climate import ClimateEntity, PLATFORM_SCHEMA
from homeassistant.components.climate.const import *
from homeassistant.const import (
ATTR_ENTITY_ID,
Expand Down Expand Up @@ -95,7 +95,7 @@ async def async_setup_platform(
)


class ClimateGroup(ClimateDevice):
class ClimateGroup(ClimateEntity):
"""Representation of a climate group."""

def __init__(
Expand Down

0 comments on commit 2a27463

Please sign in to comment.