Skip to content

Commit 5dfe90f

Browse files
committed
Working on linting errors
1 parent 4b37794 commit 5dfe90f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

simpleio.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,9 @@ def bitWrite(x: int, n: int, b: int) -> int: # pylint: disable-msg=invalid-name
9393
return x
9494

9595

96-
def shift_in(data_pin: digitalio.DigitalInOut, clock: digitalio.DigitalInOut, msb_first: bool = True) -> int:
96+
def shift_in(
97+
data_pin: digitalio.DigitalInOut, clock: digitalio.DigitalInOut, msb_first: bool = True
98+
) -> int:
9799
"""
98100
Shifts in a byte of data one bit at a time. Starts from either the LSB or
99101
MSB.

0 commit comments

Comments
 (0)