From 1fdef76f9d8b42aa1c5ec000f246d3b6838a2495 Mon Sep 17 00:00:00 2001 From: Greg Gibeling Date: Fri, 6 Feb 2026 16:22:27 -0800 Subject: [PATCH 1/2] G2-1856 Update version for release --- custom_components/vesync/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/vesync/manifest.json b/custom_components/vesync/manifest.json index a25b1fb..34db743 100644 --- a/custom_components/vesync/manifest.json +++ b/custom_components/vesync/manifest.json @@ -25,5 +25,5 @@ "requirements": [ "pyvesync==2.1.15" ], - "version": "1.3.3" + "version": "1.4.0" } From e9de2866336ce37e44b0fde7ba8405a5aebd5862 Mon Sep 17 00:00:00 2001 From: Greg Gibeling Date: Fri, 6 Feb 2026 16:30:06 -0800 Subject: [PATCH 2/2] G2-1856 Lint issues --- custom_components/vesync/config_flow.py | 2 +- custom_components/vesync/fan.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/custom_components/vesync/config_flow.py b/custom_components/vesync/config_flow.py index 4ea05a0..4fdd683 100644 --- a/custom_components/vesync/config_flow.py +++ b/custom_components/vesync/config_flow.py @@ -9,10 +9,10 @@ import homeassistant.helpers.config_validation as cv import voluptuous as vol from homeassistant import config_entries -from homeassistant.helpers.service_info import dhcp from homeassistant.const import CONF_PASSWORD, CONF_USERNAME from homeassistant.core import callback from homeassistant.data_entry_flow import FlowResult +from homeassistant.helpers.service_info import dhcp from pyvesync.vesync import VeSync from .const import DOMAIN, POLLING_INTERVAL diff --git a/custom_components/vesync/fan.py b/custom_components/vesync/fan.py index e69742f..9bdd246 100644 --- a/custom_components/vesync/fan.py +++ b/custom_components/vesync/fan.py @@ -21,9 +21,9 @@ VS_LEVELS, VS_MODE_AUTO, VS_MODE_MANUAL, + VS_MODE_PET, VS_MODE_SLEEP, VS_MODE_TURBO, - VS_MODE_PET, VS_MODES, VS_TO_HA_ATTRIBUTES, )