Skip to content

Commit 532e27d

Browse files
committed
Change to one per line.
1 parent 574848e commit 532e27d

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

adafruit_pio_uart.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,16 @@ class UART:
3333
Parity = busio.UART.Parity
3434

3535
def __init__(
36-
self, tx=None, rx=None, baudrate=9600, bits=8, parity=None, stop=1, timeout=1, cts=None, rts=None
36+
self,
37+
tx=None,
38+
rx=None,
39+
baudrate=9600,
40+
bits=8,
41+
parity=None,
42+
stop=1,
43+
timeout=1,
44+
cts=None,
45+
rts=None,
3746
): # pylint: disable=invalid-name, too-many-arguments
3847
self.bitcount = bits + (1 if parity else 0)
3948
self.bits = bits

0 commit comments

Comments
 (0)