Skip to content

Commit 1bb93f9

Browse files
committed
Resolve linter third party import issue
1 parent da66228 commit 1bb93f9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/ble_json_central.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
# Read sensor readings from peripheral BLE device using a JSON characteristic.
66

7+
from ble_json_service import SensorService
78
from adafruit_ble import BLERadio
89
from adafruit_ble.advertising.standard import ProvideServicesAdvertisement
9-
from ble_json_service import SensorService
1010

1111

1212
ble = BLERadio()

examples/ble_json_peripheral.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77
import time
88
import random
9+
from ble_json_service import SensorService
910
from adafruit_ble import BLERadio
1011
from adafruit_ble.advertising.standard import ProvideServicesAdvertisement
11-
from ble_json_service import SensorService
1212

1313

1414
# Create BLE radio, custom service, and advertisement.

0 commit comments

Comments
 (0)