Skip to content

Commit 4271d90

Browse files
author
brentru
committed
update docstrings in main .py to satisfy travis
1 parent b53be35 commit 4271d90

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

adafruit_rgbled.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ class RGBLED:
5656
Example for setting a RGB LED using a RGB Tuple (Red, Green, Blue):
5757
5858
.. code-block:: python
59+
5960
import board
6061
import adafruit_rgbled
6162
@@ -70,6 +71,7 @@ class RGBLED:
7071
Example for setting a RGB LED using a 24-bit integer (hex syntax):
7172
7273
.. code-block:: python
74+
7375
import board
7476
import adafruit_rgbled
7577
@@ -84,6 +86,7 @@ class RGBLED:
8486
Example for setting a RGB LED using a ContextManager:
8587
8688
.. code-block:: python
89+
8790
import board
8891
import adafruit_rgbled
8992
with adafruit_rgbled.RGBLED(board.D5, board.D6, board.D7) as rgb_led:
@@ -92,6 +95,7 @@ class RGBLED:
9295
Example for setting a common-anode RGB LED using a ContextManager:
9396
9497
.. code-block:: python
98+
9599
import board
96100
import adafruit_rgbled
97101
with adafruit_rgbled.RGBLED(board.D5, board.D6, board.D7, invert_pwm=True) as rgb_led:

0 commit comments

Comments
 (0)