From 40015294a3aaa81141c2740c5350ba659dc927c7 Mon Sep 17 00:00:00 2001 From: Jack Simbach Date: Sun, 30 Jul 2023 18:10:32 -0400 Subject: [PATCH] - dehumidifier appliance type fix --- custom_components/ge_home/devices/dehumidifier.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/ge_home/devices/dehumidifier.py b/custom_components/ge_home/devices/dehumidifier.py index 455a454..1f1e0c0 100644 --- a/custom_components/ge_home/devices/dehumidifier.py +++ b/custom_components/ge_home/devices/dehumidifier.py @@ -24,7 +24,7 @@ _LOGGER = logging.getLogger(__name__) class DehumidifierApi(ApplianceApi): """API class for Dehumidifier objects""" - APPLIANCE_TYPE = ErdApplianceType.WATER_HEATER + APPLIANCE_TYPE = ErdApplianceType.DEHUMIDIFIER def get_all_entities(self) -> List[Entity]: base_entities = super().get_all_entities()