mirror of
https://github.com/home-assistant/core.git
synced 2025-07-27 23:27:37 +00:00
Use internal imports in Bluetooth update coordinator to avoid future circular imports (#97506)
This commit is contained in:
parent
28bebf338f
commit
5c4e47c127
@ -6,16 +6,20 @@ import logging
|
||||
|
||||
from homeassistant.core import CALLBACK_TYPE, HomeAssistant, callback
|
||||
|
||||
from . import (
|
||||
BluetoothCallbackMatcher,
|
||||
BluetoothChange,
|
||||
BluetoothScanningMode,
|
||||
BluetoothServiceInfoBleak,
|
||||
from .api import (
|
||||
async_address_present,
|
||||
async_last_service_info,
|
||||
async_register_callback,
|
||||
async_track_unavailable,
|
||||
)
|
||||
from .match import (
|
||||
BluetoothCallbackMatcher,
|
||||
)
|
||||
from .models import (
|
||||
BluetoothChange,
|
||||
BluetoothScanningMode,
|
||||
BluetoothServiceInfoBleak,
|
||||
)
|
||||
|
||||
|
||||
class BasePassiveBluetoothCoordinator(ABC):
|
||||
|
Loading…
x
Reference in New Issue
Block a user