Skip to content

Commit dd5a26b

Browse files
committed
Linting
1 parent f6b04d7 commit dd5a26b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

examples/advanced_examples/clue_ams_remote_advanced.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"""
1313

1414
import time
15+
import board
1516
import adafruit_ble
1617
from adafruit_ble.advertising.standard import SolicitServicesAdvertisement
1718
from adafruit_ble_apple_media import AppleMediaService
@@ -21,7 +22,7 @@
2122
from adafruit_bitmap_font import bitmap_font
2223
from adafruit_display_shapes.rect import Rect
2324
from adafruit_display_text import label
24-
import board
25+
2526

2627
# PyLint can't find BLERadio for some reason so special case it here.
2728
radio = adafruit_ble.BLERadio() # pylint: disable=no-member
@@ -73,10 +74,10 @@
7374
#time = label.Label(font=arial16, x=15, y=215, text='Time', color=0xFFFFFF)
7475
group.append(track_time)
7576

76-
time_inner = Rect(15, 210, 1, 20, fill=0xFFFFFF, outline=0xFFFFFF)
77+
time_inner = Rect(15, 210, 1, 20, fill=0xFFFFFF, outline=0xFFFFFF)
7778
group.append(time_inner)
7879

79-
volume_inner = Rect(15, 170, 1, 20, fill=0xFFFFFF, outline=0xFFFFFF)
80+
volume_inner = Rect(15, 170, 1, 20, fill=0xFFFFFF, outline=0xFFFFFF)
8081
group.append(volume_inner)
8182

8283
display.show(group)

0 commit comments

Comments
 (0)