From 3e39f77e92d40ee71afbb9e08403d9a2e340efbd Mon Sep 17 00:00:00 2001 From: Erik Montnemery Date: Wed, 10 Sep 2025 11:15:59 +0200 Subject: [PATCH] Remove duplicated call to time.time in device registry (#152024) --- homeassistant/helpers/device_registry.py | 1 - 1 file changed, 1 deletion(-) diff --git a/homeassistant/helpers/device_registry.py b/homeassistant/helpers/device_registry.py index ecca8101eaa..048db4814fa 100644 --- a/homeassistant/helpers/device_registry.py +++ b/homeassistant/helpers/device_registry.py @@ -1608,7 +1608,6 @@ class DeviceRegistry(BaseRegistry[dict[str, list[dict[str, Any]]]]): ) -> None: """Clear config entry from registry entries.""" now_time = time.time() - now_time = time.time() for device in self.devices.get_devices_for_config_entry_id(config_entry_id): self.async_update_device( device.id,