Skip to content

Commit

Permalink
Merge pull request #31 from makermelissa/main
Browse files Browse the repository at this point in the history
Add documentation of DotStar attribute
  • Loading branch information
makermelissa authored Jan 18, 2022
2 parents 264371b + 69e3548 commit f71be29
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
awk -F '\/' '{ print tolower($2) }' |
tr '_' '-'
)
- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: 3.8
- name: Versions
run: |
python3 --version
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
awk -F '\/' '{ print tolower($2) }' |
tr '_' '-'
)
- name: Set up Python 3.6
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.6
python-version: 3.8
- name: Versions
run: |
python3 --version
Expand Down
8 changes: 7 additions & 1 deletion adafruit_funhouse/peripherals.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,13 @@


class Peripherals:
"""Peripherals Helper Class for the FunHouse Library"""
"""Peripherals Helper Class for the FunHouse Library
Attributes:
dotstars (DotStar): The DotStars on the FunHouse board.
See https://circuitpython.readthedocs.io/projects/dotstar/en/latest/api.html
"""

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

0 comments on commit f71be29

Please sign in to comment.