Skip to content

Commit 12ad6f8

Browse files
committed
Run pre-commit
1 parent 8e24afe commit 12ad6f8

File tree

3 files changed

+2
-1
lines changed

3 files changed

+2
-1
lines changed

Diff for: adafruit_neotrellis/multitrellis.py

-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ def sync(self):
8383
"""Read all trellis boards in the matrix and call any callbacks"""
8484
for _n in range(self._rows):
8585
for _m in range(self._cols):
86-
8786
_t = self._trelli[_n][_m]
8887
available = _t.count
8988
sleep(0.0005)

Diff for: examples/neotrellis_multitrellis_simpletest.py

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
BLUE = (0, 0, 255)
4040
PURPLE = (180, 0, 255)
4141

42+
4243
# This will be called when button events are received
4344
def blink(xcoord, ycoord, edge):
4445
# Turn the LED on when a rising edge is detected

Diff for: examples/neotrellis_simpletest.py

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
BLUE = (0, 0, 255)
2525
PURPLE = (180, 0, 255)
2626

27+
2728
# this will be called when button events are received
2829
def blink(event):
2930
# turn the LED on when a rising edge is detected

0 commit comments

Comments
 (0)