Skip to content

Commit 5e56b19

Browse files
committed
pylint again again
1 parent 8542ac7 commit 5e56b19

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/ble_heart_rate_simpletest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55

66
import time
77

8-
from adafruit_ble import BLERadio
8+
import adafruit_ble
99
from adafruit_ble.advertising.standard import ProvideServicesAdvertisement
1010
from adafruit_ble.services.standard.device_info import DeviceInfoService
1111
from adafruit_ble_heart_rate import HeartRateService
1212

1313
# PyLint can't find BLERadio for some reason so special case it here.
14-
ble = BLERadio() # pylint: disable=no-name-in-module
14+
ble = adafruit_ble.BLERadio() # pylint: disable=no-member
1515

1616
hr_connection = None
1717
# Start with a fresh connection.

0 commit comments

Comments
 (0)