Skip to content

Commit 5c21cb5

Browse files
authored
Merge pull request #7 from makermelissa/main
Updated so checks are passing
2 parents 73a4e7e + 6a0b3fe commit 5c21cb5

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
source actions-ci/install.sh
3737
- name: Pip install pylint, black, & Sphinx
3838
run: |
39-
pip install --force-reinstall pylint black==19.10b0 Sphinx sphinx-rtd-theme
39+
pip install --force-reinstall pylint black Sphinx sphinx-rtd-theme
4040
- name: Library version
4141
run: git describe --dirty --always --tags
4242
- name: Check formatting

adafruit_extended_bus.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class ExtendedI2C(I2C):
4646
"""Extended I2C is a busio extension that allows creating a compatible
4747
I2C object using the Bus ID number. The bus ID is the number at the end
4848
of /dev/i2c-# and you can find which I2C devices you have by typing
49-
`ls /dev/i2c*`"""
49+
``ls /dev/i2c*``"""
5050

5151
# pylint: disable=super-init-not-called
5252
def __init__(self, bus_id, frequency=400000):
@@ -74,7 +74,7 @@ class ExtendedSPI(SPI):
7474
"""Extended SPI is a busio extension that allows creating a compatible
7575
SPI object using the Bus ID number. The bus ID is the numbers at the end
7676
of /dev/spidev#.# and you can find which SPI devices you have by typing
77-
`ls /dev/spi*`"""
77+
``ls /dev/spi*``"""
7878

7979
# pylint: disable=invalid-name, redefined-builtin
8080
class Pin:

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@
2929
# Author details
3030
author="Adafruit Industries",
3131
author_email="[email protected]",
32-
install_requires=["Adafruit-Blinka",],
32+
install_requires=[
33+
"Adafruit-Blinka",
34+
],
3335
# Choose your license
3436
license="MIT",
3537
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers

0 commit comments

Comments
 (0)