Skip to content

Commit 3d634e2

Browse files
authored
removed Sphinx inline emphasis for *matrices
Wasn't originally intended for inline marking; intent was to match the argument definition. But documentation intent survives without the *.
1 parent 6146508 commit 3d634e2

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

adafruit_trellis/trellis_set.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ def show(self, *matrices):
167167
"""
168168
Refresh the matrix and show the changes.
169169
170-
:param ~trellis.TRELLIS *matrices: List of `trellis.TRELLIS` objects
170+
:param ~trellis.TRELLIS matrices: List of `trellis.TRELLIS` objects
171171
you wish refresh.
172172
Only required if you want to turn
173173
on an LED on a specific Trellis
@@ -191,7 +191,7 @@ def led_on(self, x, *matrices):
191191
have (4 Trellis boards: 0-63). When using `*matrices`,
192192
the range of `x` is 0-15 for the LED on each Trellis.
193193
194-
:param ~trellis.TRELLIS *matrices: List of `trellis.TRELLIS` objects
194+
:param ~trellis.TRELLIS matrices: List of `trellis.TRELLIS` objects
195195
you wish to turn on the LED `x`.
196196
Only required if you want to turn
197197
on an LED on a specific Trellis
@@ -219,7 +219,7 @@ def led_off(self, x, *matrices):
219219
have (4 Trellis boards: 0-63). When using `*matrices`,
220220
the range of `x` is 0-15 for the LED on each Trellis.
221221
222-
:param ~trellis.TRELLIS *matrices: List of `trellis.TRELLIS` objects
222+
:param ~trellis.TRELLIS matrices: List of `trellis.TRELLIS` objects
223223
you wish to turn off the LED `x`.
224224
Only required if you want to turn
225225
off an LED on a specific Trellis
@@ -246,7 +246,7 @@ def led_status(self, x, *matrices):
246246
have (4 Trellis boards: 0-63). When using `*matrices`,
247247
the range of `x` is 0-15 for the LED on each Trellis.
248248
249-
:param ~trellis.TRELLIS *matrices: List of `trellis.TRELLIS` objects
249+
:param ~trellis.TRELLIS matrices: List of `trellis.TRELLIS` objects
250250
you wish to check the LED `x`.
251251
Only required if you want to check
252252
an LED on a specific Trellis board.
@@ -268,7 +268,7 @@ def fill(self, color, *matrices):
268268
269269
:param int color: 0 == OFF, > 0 == ON
270270
271-
:param ~trellis.TRELLIS *matrices: List of `trellis.TRELLIS` objects
271+
:param ~trellis.TRELLIS matrices: List of `trellis.TRELLIS` objects
272272
you wish to fill with the given color.
273273
Only required if you want to fill
274274
the color on a specific Trellis board.
@@ -284,7 +284,7 @@ def read_buttons(self, *matrices):
284284
"""
285285
Read the button matrix register on the Trellis.
286286
287-
:param ~trellis.TRELLIS *matrices: List of `trellis.TRELLIS` object(s)
287+
:param ~trellis.TRELLIS matrices: List of `trellis.TRELLIS` object(s)
288288
you wish to read the button matrix of.
289289
Only required if you want to read the
290290
the buttons on a specific Trellis board.
@@ -311,7 +311,7 @@ def just_pressed(self, button, *matrices):
311311
When using `*matrices`, the range of `button` is 0-15
312312
for the button on each Trellis.
313313
314-
:param ~trellis.TRELLIS *matrices: List of `trellis.TRELLIS` object you
314+
:param ~trellis.TRELLIS matrices: List of `trellis.TRELLIS` object you
315315
wish to check the button on.
316316
Only required if you want to read the
317317
the buttons on a specific Trellis board.
@@ -342,7 +342,7 @@ def just_released(self, button, *matrices):
342342
When using `*matrices`, the range of `button` is 0-15
343343
for the button on each Trellis.
344344
345-
:param ~trellis.TRELLIS *matrices: List of `trellis.TRELLIS` object you
345+
:param ~trellis.TRELLIS matrices: List of `trellis.TRELLIS` object you
346346
wish to check the button on.
347347
Only required if you want to read the
348348
the buttons on a specific Trellis board.

0 commit comments

Comments
 (0)