We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 080d648 commit 8e4fbc8Copy full SHA for 8e4fbc8
adafruit_ble_midi.py
@@ -47,7 +47,9 @@ def __init__(self) -> None:
47
fixed_length=False,
48
)
49
50
- def bind(self, service: MIDIService) -> _bleio.PacketBuffer:
+ def bind( # pylint:disable=used-before-assignment
51
+ self, service: MIDIService
52
+ ) -> _bleio.PacketBuffer:
53
"""Binds the characteristic to the given Service."""
54
bound_characteristic = super().bind(service)
55
return _bleio.PacketBuffer(bound_characteristic, buffer_size=4)
0 commit comments