Skip to content

Commit 598f180

Browse files
committed
sphinx fix
1 parent 2cdee4a commit 598f180

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

adafruit_avrprog.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@
5555
_FAST_CLOCK = 1000000
5656

5757
class AVRprog:
58+
"""
59+
Initialize the programmer with an SPI port that will be used to
60+
communicate with the chip. Make sure your SPI supports 'write_readinto'
61+
Also pass in a reset pin that will be used to get into programming mode
62+
"""
5863
_spi = None
5964
_rst = None
6065

6166
def init(self, spi_bus, rst_pin):
62-
"""
63-
Initialize the programmer with an SPI port that will be used to
64-
communicate with the chip. Make sure your SPI supports 'write_readinto'
65-
Also pass in a reset pin that will be used to get into programming mode
66-
"""
6767
self._spi = spi_bus
6868
self._rst = DigitalInOut(rst_pin)
6969
self._rst.direction = Direction.OUTPUT

0 commit comments

Comments
 (0)