Fix missing f-string prefix in wiz error message (#182363)

Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
Yanze (David) Wu
2026-09-16 07:09:45 +02:00
committed by GitHub
co-authored by Claude Opus 5
parent d7dc840238
commit 5fd990135b
+1 -1
View File
@@ -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)