mirror of
https://github.com/home-assistant/core.git
synced 2026-09-26 01:11:51 -04:00
Fix missing f-string prefix in local_calendar error message (#182360)
Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 5
parent
4e2e79a4ad
commit
b796adea21
@@ -34,7 +34,7 @@ async def async_setup_entry(
|
||||
try:
|
||||
await store.async_load()
|
||||
except OSError as err:
|
||||
raise ConfigEntryNotReady("Failed to load file {path}: {err}") from err
|
||||
raise ConfigEntryNotReady(f"Failed to load file {path}: {err}") from err
|
||||
|
||||
entry.runtime_data = store
|
||||
|
||||
|
||||
Reference in New Issue
Block a user