Skip to content

Commit 73e4fe8

Browse files
Reorder import lines in examples for pylint
1 parent 2886aea commit 73e4fe8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/dotstar_image_paint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
# See dotstar_image_pov.py for a faster persistence-of-vision example.
88

99
import time
10-
from PIL import Image
1110
import board
11+
from PIL import Image
1212
import adafruit_dotstar as dotstar
1313

1414
NUMPIXELS = 30 # Number of LEDs in strip

examples/dotstar_image_pov.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
# could break easily with future library changes, but is the only way right
1111
# now to do the POV as quickly as possible.
1212

13-
from PIL import Image
1413
import board
14+
from PIL import Image
1515
import adafruit_dotstar as dotstar
1616

1717
NUMPIXELS = 30 # Length of DotStar strip

0 commit comments

Comments
 (0)