Skip to content

Commit

Permalink
Run pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tekktrik committed May 11, 2023
1 parent 8e24afe commit 12ad6f8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
1 change: 0 additions & 1 deletion adafruit_neotrellis/multitrellis.py
Expand Up @@ -83,7 +83,6 @@ def sync(self):
"""Read all trellis boards in the matrix and call any callbacks"""
for _n in range(self._rows):
for _m in range(self._cols):

_t = self._trelli[_n][_m]
available = _t.count
sleep(0.0005)
Expand Down
1 change: 1 addition & 0 deletions examples/neotrellis_multitrellis_simpletest.py
Expand Up @@ -39,6 +39,7 @@
BLUE = (0, 0, 255)
PURPLE = (180, 0, 255)


# This will be called when button events are received
def blink(xcoord, ycoord, edge):
# Turn the LED on when a rising edge is detected
Expand Down
1 change: 1 addition & 0 deletions examples/neotrellis_simpletest.py
Expand Up @@ -24,6 +24,7 @@
BLUE = (0, 0, 255)
PURPLE = (180, 0, 255)


# this will be called when button events are received
def blink(event):
# turn the LED on when a rising edge is detected
Expand Down

0 comments on commit 12ad6f8

Please sign in to comment.