Use internal imports in Bluetooth update coordinator to avoid future circular imports (#97506)

This commit is contained in:
J. Nick Koston 2023-07-31 01:02:57 -07:00 committed by GitHub
parent 28bebf338f
commit 5c4e47c127
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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):