Skip to content

Commit

Permalink
Fixed trailing space pylint error
Browse files Browse the repository at this point in the history
  • Loading branch information
cerickson committed May 14, 2018
1 parent 1993c52 commit 85d5cca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adafruit_bus_device/spi_device.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class SPIDevice:
with device as spi:
spi.write(bytes_read)
"""
def __init__(self, spi, chip_select=None, *,
def __init__(self, spi, chip_select=None, *,
baudrate=100000, polarity=0, phase=0, extra_clocks=0):
self.spi = spi
self.baudrate = baudrate
Expand Down

0 comments on commit 85d5cca

Please sign in to comment.