We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca4e0a6 commit 293c136Copy full SHA for 293c136
bless/backends/corebluetooth/descriptor.py
@@ -1,7 +1,7 @@
1
from CoreBluetooth import CBUUID, CBMutableDescriptor # type: ignore
2
3
-from bleak.backends.corebluetooth.descriptor import ( # type: ignore
4
- BleakGATTDescriptorCoreBluetooth,
+from bleak.backends.descriptor import ( # type: ignore
+ BleakGATTDescriptor,
5
)
6
7
from bless.backends.descriptor import BlessGATTDescriptor
@@ -13,9 +13,7 @@
13
from typing import Union, Optional
14
15
16
-class BlessGATTDescriptorCoreBluetooth(
17
- BlessGATTDescriptor, BleakGATTDescriptorCoreBluetooth
18
-):
+class BlessGATTDescriptorCoreBluetooth(BlessGATTDescriptor, BleakGATTDescriptor):
19
"""
20
CoreBluetooth implementation of a GATT Descriptor
21
0 commit comments