Skip to content

Commit 69e3548

Browse files
committed
Add documentation of DotStars attribute
1 parent 264371b commit 69e3548

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
awk -F '\/' '{ print tolower($2) }' |
2323
tr '_' '-'
2424
)
25-
- name: Set up Python 3.7
25+
- name: Set up Python 3.8
2626
uses: actions/setup-python@v1
2727
with:
28-
python-version: 3.7
28+
python-version: 3.8
2929
- name: Versions
3030
run: |
3131
python3 --version

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
awk -F '\/' '{ print tolower($2) }' |
2525
tr '_' '-'
2626
)
27-
- name: Set up Python 3.6
27+
- name: Set up Python 3.8
2828
uses: actions/setup-python@v1
2929
with:
30-
python-version: 3.6
30+
python-version: 3.8
3131
- name: Versions
3232
run: |
3333
python3 --version

adafruit_funhouse/peripherals.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,13 @@
4646

4747

4848
class Peripherals:
49-
"""Peripherals Helper Class for the FunHouse Library"""
49+
"""Peripherals Helper Class for the FunHouse Library
50+
51+
52+
Attributes:
53+
dotstars (DotStar): The DotStars on the FunHouse board.
54+
See https://circuitpython.readthedocs.io/projects/dotstar/en/latest/api.html
55+
"""
5056

5157
# pylint: disable=too-many-instance-attributes, too-many-locals, too-many-branches, too-many-statements
5258
def __init__(self) -> None:

0 commit comments

Comments
 (0)