From 26ee25d7bb5274bebf7039c97f89b804f1c19c17 Mon Sep 17 00:00:00 2001 From: Erwin Douna Date: Sat, 31 Jan 2026 11:41:41 +0100 Subject: [PATCH] Pattern fix for Proxmox config flow (#161946) --- homeassistant/components/proxmoxve/config_flow.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/homeassistant/components/proxmoxve/config_flow.py b/homeassistant/components/proxmoxve/config_flow.py index 74b6a74722a..6f6c7595ede 100644 --- a/homeassistant/components/proxmoxve/config_flow.py +++ b/homeassistant/components/proxmoxve/config_flow.py @@ -123,8 +123,7 @@ class ProxmoxveConfigFlow(ConfigFlow, domain=DOMAIN): errors["base"] = "ssl_error" except ProxmoxNoNodesFound: errors["base"] = "no_nodes_found" - - if not errors: + else: return self.async_create_entry( title=user_input[CONF_HOST], data={**user_input, CONF_NODES: proxmox_nodes},