Skip to content

Commit 0f24727

Browse files
committed
Run pre-commit
1 parent 137b0c2 commit 0f24727

File tree

5 files changed

+1
-4
lines changed

5 files changed

+1
-4
lines changed

adafruit_seesaw/keypad.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ def const(x):
3131
_KEYPAD_COUNT = const(0x04)
3232
_KEYPAD_FIFO = const(0x10)
3333

34+
3435
# pylint: disable=too-few-public-methods
3536
class KeyEvent:
3637
"""Holds information about a key event in its properties

adafruit_seesaw/tftshield18.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ def const(x):
4444

4545

4646
class TFTShield18(Seesaw):
47-
4847
_BACKLIGHT_ON = b"\xFF\xFF"
4948
_BACKLIGHT_OFF = b"\x00\x00"
5049

examples/seesaw_rotary_multiples.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737

3838

3939
while True:
40-
4140
# negate the position to make clockwise rotation positive
4241
position1 = -encoder1.position
4342
position2 = -encoder2.position

examples/seesaw_rotary_neopixel.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
color = 0 # start at red
2828

2929
while True:
30-
3130
# negate the position to make clockwise rotation positive
3231
position = -encoder.position
3332

examples/seesaw_rotary_simpletest.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
last_position = None
2929

3030
while True:
31-
3231
# negate the position to make clockwise rotation positive
3332
position = -encoder.position
3433

0 commit comments

Comments
 (0)