From 5fd990135b959a6c80c9263f2e8f33c86caaa2ef Mon Sep 17 00:00:00 2001 From: "Yanze (David) Wu" <133224895+David-Wu1119@users.noreply.github.com> Date: Tue, 15 Sep 2026 22:09:45 -0700 Subject: [PATCH] Fix missing f-string prefix in wiz error message (#182363) Co-authored-by: Claude Opus 5 --- homeassistant/components/wiz/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/wiz/__init__.py b/homeassistant/components/wiz/__init__.py index 52b699631858..1bc3f1ea6a3a 100644 --- a/homeassistant/components/wiz/__init__.py +++ b/homeassistant/components/wiz/__init__.py @@ -76,7 +76,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: WizConfigEntry) -> bool: # since its the wrong device. As soon as the device comes back # online the ip will get updated and setup will proceed. raise ConfigEntryNotReady( - "Found bulb {bulb.mac} at {ip_address}, expected {entry.unique_id}" + f"Found bulb {bulb.mac} at {ip_address}, expected {entry.unique_id}" ) coordinator = WizCoordinator(hass, entry, bulb)