Skip to content

Commit f83687c

Browse files
committed
rearrange import statements for pylint
1 parent 61dac4d commit f83687c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

examples/display_text_background_color_padding.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
# from adafruit_st7789 import ST7789
1010
from adafruit_ili9341 import ILI9341
11-
from adafruit_display_text import label
1211
from adafruit_bitmap_font import bitmap_font
12+
from adafruit_display_text import label
1313

1414
# Setup the SPI display
1515

examples/display_text_textarea_boundingbox.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
import os
22
import board
33
import displayio
4-
from adafruit_display_text.label import Label
54
from adafruit_bitmap_font import bitmap_font
5+
from adafruit_display_text.label import Label
6+
67

78
# the current working directory (where this file is)
89
cwd = ("/" + __file__).rsplit("/", 1)[0]

0 commit comments

Comments
 (0)