mirror of
https://github.com/home-assistant/core.git
synced 2025-07-16 17:57:11 +00:00
Remove uneeded typing on Idasen Desk (#102615)
This commit is contained in:
parent
5245c94342
commit
2935d7d919
@ -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)},
|
||||
|
Loading…
x
Reference in New Issue
Block a user