Skip to content

Commit 30d4991

Browse files
author
=Dale Weber
committed
Removed the last trailing white space and moved imports to the top of the file.
1 parent 4d5edad commit 30d4991

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

examples/ht16k33_animation_demo.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
The display must be initialized with auto_write=False.
55
"""
66

7+
from time import sleep
8+
import board
9+
import busio
10+
from adafruit_ht16k33.segments import Seg14x4
11+
712
#
813
# Segment bits on the HT16K33 with alphanumeric display.
914
#
@@ -35,11 +40,6 @@
3540
# Brightness of the display (0 to 15)
3641
DEFAULT_DISPLAY_BRIGHTNESS = 2
3742

38-
from time import sleep
39-
import board
40-
import busio
41-
from adafruit_ht16k33.segments import Seg14x4
42-
4343
# Initialize the I2C bus
4444
i2c = busio.I2C(board.SCL, board.SDA)
4545

@@ -307,7 +307,7 @@ def count_down():
307307
sleep(1.0)
308308

309309

310-
print("Enclosed Spinners")
310+
print("Enclosed Spinners")
311311
enclosed_spinners(0.1, 20)
312312
sleep(1.0)
313313
display.fill(0)

0 commit comments

Comments
 (0)