Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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