From 6fbff94af8c3d227f56fc6c8d343d3da7a17c62e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20=C4=8Cerm=C3=A1k?= Date: Thu, 30 Apr 2026 10:52:23 +0200 Subject: [PATCH] Remove redundant variable assignment in rapt_ble init (#169538) --- homeassistant/components/rapt_ble/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/rapt_ble/__init__.py b/homeassistant/components/rapt_ble/__init__.py index 370d2c5049ed..3eba91b2110f 100644 --- a/homeassistant/components/rapt_ble/__init__.py +++ b/homeassistant/components/rapt_ble/__init__.py @@ -26,7 +26,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: RAPTBLEConfigEntry) -> b address = entry.unique_id assert address is not None data = RAPTPillBluetoothDeviceData() - coordinator = entry.runtime_data = PassiveBluetoothProcessorCoordinator( + coordinator = PassiveBluetoothProcessorCoordinator( hass, _LOGGER, address=address,