From 7133e91e25b81a1949f1b4d17494999881098300 Mon Sep 17 00:00:00 2001 From: Jacob McSwain Date: Sat, 19 Oct 2019 16:57:57 -0500 Subject: [PATCH] ShittyNestClimate -> NestClimate --- custom_components/badnest/climate.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/custom_components/badnest/climate.py b/custom_components/badnest/climate.py index 5a1904e..16852bc 100644 --- a/custom_components/badnest/climate.py +++ b/custom_components/badnest/climate.py @@ -67,10 +67,10 @@ async def async_setup_platform(hass, hass.data[DOMAIN][CONF_PASSWORD] ) - async_add_entities([ShittyNestClimate(nest)]) + async_add_entities([NestClimate(nest)]) -class ShittyNestClimate(ClimateDevice): +class NestClimate(ClimateDevice): """Representation of a Nest climate device.""" def __init__(self, api):