mirror of
https://github.com/home-assistant/core.git
synced 2026-09-26 09:23:17 -04:00
Fix missing f-string prefix in wiz error message (#182363)
Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 5
parent
d7dc840238
commit
5fd990135b
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user