From 2ebc7e6be54f613902e0a7955ed140643cf4d6ac Mon Sep 17 00:00:00 2001 From: MapoDan <42698485+MapoDan@users.noreply.github.com> Date: Fri, 3 Jan 2025 16:15:30 +0100 Subject: [PATCH] Update const.py --- custom_components/programmable_thermostat/const.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/custom_components/programmable_thermostat/const.py b/custom_components/programmable_thermostat/const.py index 81b6ac4..58b187f 100644 --- a/custom_components/programmable_thermostat/const.py +++ b/custom_components/programmable_thermostat/const.py @@ -1,10 +1,11 @@ """Programmable thermostat's constant """ from homeassistant.components.climate import HVACMode +from homeassistant.const import Platform #Generic -VERSION = '8.3' +VERSION = '8.4' DOMAIN = 'programmable_thermostat' -PLATFORM = 'climate' +PLATFORM = [Platform.CLIMATE] ISSUE_URL = 'https://github.com/custom-components/climate.programmable_thermostat/issues' CONFIGFLOW_VERSION = 4