From 2935d7d919bbd0f2e860ea6e220aa6a6c32ea694 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ab=C3=ADlio=20Costa?= Date: Mon, 23 Oct 2023 22:57:58 +0100 Subject: [PATCH] Remove uneeded typing on Idasen Desk (#102615) --- homeassistant/components/idasen_desk/__init__.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/homeassistant/components/idasen_desk/__init__.py b/homeassistant/components/idasen_desk/__init__.py index fb905bc6c4f..9496752dce7 100644 --- a/homeassistant/components/idasen_desk/__init__.py +++ b/homeassistant/components/idasen_desk/__init__.py @@ -91,10 +91,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: """Set up IKEA Idasen from a config entry.""" address: str = entry.data[CONF_ADDRESS].upper() - coordinator: IdasenDeskCoordinator = IdasenDeskCoordinator( - hass, _LOGGER, entry.title, address - ) - + coordinator = IdasenDeskCoordinator(hass, _LOGGER, entry.title, address) device_info = DeviceInfo( name=entry.title, connections={(dr.CONNECTION_BLUETOOTH, address)},