Skip to content

Commit b8db16a

Browse files
committed
fixes for sphinx docs build
1 parent 06fe8bc commit b8db16a

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

adafruit_monsterm4sk.py

+9-4
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ class MonsterM4sk:
6565
def __init__(self, i2c=None):
6666
"""
6767
:param i2c: The I2C bus to use, will try board.I2C()
68-
if not supplied
68+
if not supplied
69+
6970
"""
7071
displayio.release_displays()
7172

@@ -155,9 +156,10 @@ def acceleration(self):
155156
This example initializes the mask and prints the accelerometer data.
156157
157158
.. code-block:: python
158-
import adafruit_monsterm4sk
159-
mask = adafruit_monsterm4sk.MonsterM4sk(i2c=board.I2C())
160-
print(mask.acceleration)
159+
160+
import adafruit_monsterm4sk
161+
mask = adafruit_monsterm4sk.MonsterM4sk(i2c=board.I2C())
162+
print(mask.acceleration)
161163
162164
"""
163165
return (
@@ -173,6 +175,7 @@ def light(self):
173175
This example initializes the mask and prints the light sensor data.
174176
175177
.. code-block:: python
178+
176179
import adafruit_monsterm4sk
177180
mask = adafruit_monsterm4sk.MonsterM4sk(i2c=board.I2C())
178181
print(mask.light)
@@ -188,6 +191,7 @@ def buttons(self):
188191
is pressed down.
189192
190193
.. code-block:: python
194+
191195
import adafruit_monsterm4sk
192196
mask = adafruit_monsterm4sk.MonsterM4sk(i2c=board.I2C())
193197
@@ -211,6 +215,7 @@ def boop(self):
211215
is being touched.
212216
213217
.. code-block:: python
218+
214219
import adafruit_monsterm4sk
215220
mask = adafruit_monsterm4sk.MonsterM4sk(i2c=board.I2C())
216221

0 commit comments

Comments
 (0)