Skip to content

Commit c84c33b

Browse files
committed
I guess black prefers chopping the args now that It's longer. 🤷‍♀️
1 parent 2559121 commit c84c33b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

adafruit_magtag/peripherals.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,13 @@ def __init__(self) -> None:
6565

6666
# Buttons
6767
self.buttons = []
68-
for pin in (board.BUTTON_A, board.BUTTON_B, board.BUTTON_C, board.BUTTON_D, board.BOOT0):
68+
for pin in (
69+
board.BUTTON_A,
70+
board.BUTTON_B,
71+
board.BUTTON_C,
72+
board.BUTTON_D,
73+
board.BOOT0,
74+
):
6975
switch = DigitalInOut(pin)
7076
switch.direction = Direction.INPUT
7177
switch.pull = Pull.UP

0 commit comments

Comments
 (0)