Skip to content

Commit 4a0f055

Browse files
committed
"Reformatted per new black version"
1 parent 5b978e2 commit 4a0f055

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

adafruit_is31fl3731/keybow2040.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333

3434
class Keybow2040(IS31FL3731):
35-
"""Supports the Pimoroni Keybow 2040 with 4x4 matrix of RGB LEDs """
35+
"""Supports the Pimoroni Keybow 2040 with 4x4 matrix of RGB LEDs"""
3636

3737
width = 16
3838
height = 3

adafruit_is31fl3731/rgbmatrix5x5.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737

3838
class RGBmatrix5x5(IS31FL3731):
39-
"""Supports the Pimoroni RGBmatrix5x5 with 5x5 matrix of RGB LEDs """
39+
"""Supports the Pimoroni RGBmatrix5x5 with 5x5 matrix of RGB LEDs"""
4040

4141
width = 25
4242
height = 3

examples/is31fl3731_frame_example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
bit = 1 << (7 - x) & row
4040
# display the pixel into selected frame with varying intensity
4141
if bit:
42-
display.pixel(x + frame, y, frame ** 2 + 1)
42+
display.pixel(x + frame, y, frame**2 + 1)
4343
display.sleep(False)
4444
# now tell the display to show the frame one at time
4545
while True:

0 commit comments

Comments
 (0)