From f27cefc13d7a412f1d0a74abf0f8782796a4ea92 Mon Sep 17 00:00:00 2001 From: Sam Stenvall Date: Mon, 9 Sep 2024 21:19:04 +0300 Subject: [PATCH] [fixup] fix typo Co-authored-by: Akseli Lukkarila --- custom_components/vinx/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/vinx/__init__.py b/custom_components/vinx/__init__.py index 174c2f8..ee197d3 100644 --- a/custom_components/vinx/__init__.py +++ b/custom_components/vinx/__init__.py @@ -58,7 +58,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: async with lw3.connection(): device_information = await get_device_information(lw3) - # Store the lw3 as runtime data in teh entry + # Store the lw3 as runtime data in the entry entry.runtime_data = VinxRuntimeData(lw3, device_information) except ConnectionError as e: raise ConfigEntryNotReady("Unable to connect") from e