Skip to content

Commit d869153

Browse files
authored
Merge pull request #21 from tekktrik/dev/typing-fix
Minor fix to type annotation
2 parents a642f83 + c9a5427 commit d869153

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_ble_file_transfer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def __init__(self) -> None:
6565
fixed_length=False,
6666
)
6767

68-
def bind(self, service: Service) -> _bleio.PacketBuffer:
68+
def bind(self, service: "FileTransferService") -> _bleio.PacketBuffer:
6969
"""Binds the characteristic to the given Service."""
7070
bound_characteristic = super().bind(service)
7171
return _bleio.PacketBuffer(

0 commit comments

Comments
 (0)