From 9f10bd46ac3dd811b47a1a90112a5372057a11d9 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Fri, 16 Dec 2022 22:25:43 -1000 Subject: [PATCH] Rename Bluetooth active_update_coordinator to active_update_processor (#84115) --- ...{active_update_coordinator.py => active_update_processor.py} | 0 homeassistant/components/xiaomi_ble/__init__.py | 2 +- ...ve_update_coordinator.py => test_active_update_processor.py} | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename homeassistant/components/bluetooth/{active_update_coordinator.py => active_update_processor.py} (100%) rename tests/components/bluetooth/{test_active_update_coordinator.py => test_active_update_processor.py} (99%) diff --git a/homeassistant/components/bluetooth/active_update_coordinator.py b/homeassistant/components/bluetooth/active_update_processor.py similarity index 100% rename from homeassistant/components/bluetooth/active_update_coordinator.py rename to homeassistant/components/bluetooth/active_update_processor.py diff --git a/homeassistant/components/xiaomi_ble/__init__.py b/homeassistant/components/xiaomi_ble/__init__.py index 201e4f14582..8ed18c045d4 100644 --- a/homeassistant/components/xiaomi_ble/__init__.py +++ b/homeassistant/components/xiaomi_ble/__init__.py @@ -12,7 +12,7 @@ from homeassistant.components.bluetooth import ( BluetoothServiceInfoBleak, async_ble_device_from_address, ) -from homeassistant.components.bluetooth.active_update_coordinator import ( +from homeassistant.components.bluetooth.active_update_processor import ( ActiveBluetoothProcessorCoordinator, ) from homeassistant.config_entries import ConfigEntry diff --git a/tests/components/bluetooth/test_active_update_coordinator.py b/tests/components/bluetooth/test_active_update_processor.py similarity index 99% rename from tests/components/bluetooth/test_active_update_coordinator.py rename to tests/components/bluetooth/test_active_update_processor.py index 000a415b19b..99df97061fb 100644 --- a/tests/components/bluetooth/test_active_update_coordinator.py +++ b/tests/components/bluetooth/test_active_update_processor.py @@ -12,7 +12,7 @@ from homeassistant.components.bluetooth import ( BluetoothScanningMode, BluetoothServiceInfoBleak, ) -from homeassistant.components.bluetooth.active_update_coordinator import ( +from homeassistant.components.bluetooth.active_update_processor import ( ActiveBluetoothProcessorCoordinator, ) from homeassistant.core import HomeAssistant