diff --git a/components/BalboaGL/climate/__init__.py b/components/BalboaGL/climate/__init__.py index 2f36088..8162a4e 100644 --- a/components/BalboaGL/climate/__init__.py +++ b/components/BalboaGL/climate/__init__.py @@ -11,7 +11,7 @@ CONF_SWING_MODE, ) from esphome.core import CORE, coroutine -from .. import balboa_ns, CONF_BALBOA_ID, BalboaGL +from .. import balboagl_ns, CONF_BALBOA_ID, BalboaGL AUTO_LOAD = ["climate"] @@ -23,7 +23,7 @@ DEFAULT_FAN_MODES = ["OFF"] DEFAULT_SWING_MODES = ["OFF"] -BalboaGL = balboa_ns.class_( +BalboaGL = balboagl_ns.class_( "BalboaGLClimate", climate.Climate, cg.PollingComponent )