Skip to content

Commit 4da237e

Browse files
committed
black
1 parent 5daef99 commit 4da237e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

adafruit_seesaw/attiny8x7.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ class ATtiny8x7_Pinmap:
2626
pwm_width = 16 # we dont actually use all 16 bits but whatever
2727

2828
"""The pins capable of PWM output"""
29-
pwm_pins = (0, 1, 9, 12, 13) # 8 bit PWM mode
30-
pwm_pins += (6, 7, 8) # 16 bit PWM mode
29+
pwm_pins = (0, 1, 9, 12, 13) # 8 bit PWM mode
30+
pwm_pins += (6, 7, 8) # 16 bit PWM mode
3131

3232
"""No pins on this board are capable of touch input"""
3333
touch_pins = ()

adafruit_seesaw/attinyx16.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ class ATtinyx16_Pinmap:
2525
pwm_width = 16 # we dont actually use all 16 bits but whatever
2626

2727
"""The pins capable of PWM output"""
28-
pwm_pins = (0, 1, 7, 11, 16) # 8 bit PWM mode
29-
pwm_pins += (4, 5, 6) # 16 bit PWM mode
28+
pwm_pins = (0, 1, 7, 11, 16) # 8 bit PWM mode
29+
pwm_pins += (4, 5, 6) # 16 bit PWM mode
3030

3131
"""No pins on this board are capable of touch input"""
3232
touch_pins = ()

0 commit comments

Comments
 (0)