Skip to content

Commit 6dd47d5

Browse files
committed
Appease the Sphinx.
1 parent 496e46c commit 6dd47d5

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

adafruit_led_animation/animation.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,7 @@ def cycle_complete(self):
192192
def add_cycle_complete_receiver(self, callback):
193193
"""
194194
Adds an additional callback when the cycle completes.
195+
195196
:param callback: Additional callback to trigger when a cycle completes. The callback
196197
is passed the animation object instance.
197198
"""

adafruit_led_animation/helper.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@ def vertical_lines(cls, pixels, width, height, gridmapper):
181181
alternating direction every row.
182182
183183
.. code-block:: python
184+
184185
PixelMap.vertical_lines(pixels, 32, 8, vertical_strip_gridmap(8))
185186
186187
"""
@@ -207,6 +208,7 @@ def horizontal_lines(cls, pixels, width, height, gridmapper):
207208
alternating direction every row.
208209
209210
.. code-block:: python
211+
210212
PixelMap.horizontal_lines(pixels, 16, 16, vertical_strip_gridmap(16))
211213
"""
212214
if len(pixels) < width * height:
@@ -423,6 +425,7 @@ def cycle_complete(self):
423425
def add_cycle_complete_receiver(self, callback):
424426
"""
425427
Adds an additional callback when the cycle completes.
428+
426429
:param callback: Additional callback to trigger when a cycle completes. The callback
427430
is passed the animation object instance.
428431
"""
@@ -504,6 +507,7 @@ class AnimationSequence:
504507
:param bool advance_on_cycle_complete: Automatically advance when `cycle_complete` is triggered
505508
on member animations. All Animations must support
506509
cycle_complete to use this.
510+
507511
.. code-block:: python
508512
509513
import board
@@ -584,6 +588,7 @@ def _sequence_complete(self, animation): # pylint: disable=unused-argument
584588
def add_cycle_complete_receiver(self, callback):
585589
"""
586590
Adds an additional callback when the cycle completes.
591+
587592
:param callback: Additional callback to trigger when a cycle completes. The callback
588593
is passed the animation object instance.
589594
"""

0 commit comments

Comments
 (0)