Skip to content

Commit ab45265

Browse files
committed
Annotate services/circuitpython.py
1 parent 540d4fd commit ab45265

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_ble/services/circuitpython.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
class CircuitPythonUUID(VendorUUID):
2424
"""UUIDs with the CircuitPython base UUID."""
2525

26-
def __init__(self, uuid16):
26+
def __init__(self, uuid16: int) -> None:
2727
uuid128 = bytearray("nhtyPtiucriC".encode("utf-8") + b"\x00\x00\xaf\xad")
2828
uuid128[-3] = uuid16 >> 8
2929
uuid128[-4] = uuid16 & 0xFF

0 commit comments

Comments
 (0)