From 0ec4805acc3d652434dde82d1738f86a4410d049 Mon Sep 17 00:00:00 2001 From: Michael Wood Date: Thu, 9 Jul 2020 16:36:53 -0500 Subject: [PATCH] Correct ClimateDevice change missed in last commit --- custom_components/infinitive/climate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/infinitive/climate.py b/custom_components/infinitive/climate.py index 95e03db..1917329 100644 --- a/custom_components/infinitive/climate.py +++ b/custom_components/infinitive/climate.py @@ -95,7 +95,7 @@ def setup_platform(hass, config, add_entities, discovery_info=None): add_entities([InfinitiveDevice(inf_device, name, temp_min_spread)]) -class InfinitiveDevice(ClimateDevice): +class InfinitiveDevice(ClimateEntity): """Representation of an Infinitive Device.""" def __init__(self, inf_device, name, temp_min_spread):