From e77bfce14802e0c7d332cb0a3e69b6238bcb2e42 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Sun, 13 Sep 2026 14:40:24 +0200 Subject: [PATCH] Require the IRK in the Private BLE Device config flow (#181969) --- homeassistant/components/private_ble_device/config_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/private_ble_device/config_flow.py b/homeassistant/components/private_ble_device/config_flow.py index 02b3db494da1..2da8e4121b97 100644 --- a/homeassistant/components/private_ble_device/config_flow.py +++ b/homeassistant/components/private_ble_device/config_flow.py @@ -70,7 +70,7 @@ class BLEDeviceTrackerConfigFlow(ConfigFlow, domain=DOMAIN): data={CONF_IRK: irk_bytes.hex()}, ) - data_schema = vol.Schema({CONF_IRK: str}) + data_schema = vol.Schema({vol.Required(CONF_IRK): str}) return self.async_show_form( step_id="user", data_schema=data_schema, errors=errors )