Skip to content

Commit 3c58d9a

Browse files
committed
examples/bluetooth/ble_temperature_central.py: Shorten comment.
So the line length is less than 100 characters.
1 parent a0441fc commit 3c58d9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/bluetooth/ble_temperature_central.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def _irq(self, event, data):
7272
if connectable and _ENV_SENSE_UUID in decode_services(adv_data):
7373
# Found a potential device, remember it and stop scanning.
7474
self._addr_type = addr_type
75-
self._addr = bytes(addr) # Note: The addr buffer is owned by modbluetooth, need to copy it.
75+
self._addr = bytes(addr) # Note: addr buffer is owned by caller so need to copy it.
7676
self._name = decode_name(adv_data) or '?'
7777
self._ble.gap_scan(None)
7878

0 commit comments

Comments
 (0)