Skip to content

Commit 551e78f

Browse files
committed
work around pylint issue
1 parent 2dcf0e6 commit 551e78f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/ble_heart_rate_simpletest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
from adafruit_ble.services.standard.device_info import DeviceInfoService
1111
from adafruit_ble_heart_rate import HeartRateService
1212

13-
ble = BLERadio()
13+
# PyLint can't find BLERadio for some reason so special case it here.
14+
radio = BLERadio() # pylint: disable=no-member
1415

1516
hr_connection = None
1617
# Start with a fresh connection.

0 commit comments

Comments
 (0)