Fix startup block from Swiss public transport (#123704)

pull/123714/head
Cyrill Raccaud 2024-08-12 17:01:06 +02:00 committed by GitHub
parent 26a69458b0
commit 200f04bf21
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ async def async_setup_entry(
translation_key="request_timeout",
translation_placeholders={
"config_title": entry.title,
"error": e,
"error": str(e),
},
) from e
except OpendataTransportError as e:
@ -68,7 +68,7 @@ async def async_setup_entry(
translation_placeholders={
**PLACEHOLDERS,
"config_title": entry.title,
"error": e,
"error": str(e),
},
) from e