File tree 3 files changed +6
-4
lines changed
3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 36
36
source actions-ci/install.sh
37
37
- name : Pip install pylint, black, & Sphinx
38
38
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
40
40
- name : Library version
41
41
run : git describe --dirty --always --tags
42
42
- name : Check formatting
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ class ExtendedI2C(I2C):
46
46
"""Extended I2C is a busio extension that allows creating a compatible
47
47
I2C object using the Bus ID number. The bus ID is the number at the end
48
48
of /dev/i2c-# and you can find which I2C devices you have by typing
49
- `ls /dev/i2c*`"""
49
+ `` ls /dev/i2c*` `"""
50
50
51
51
# pylint: disable=super-init-not-called
52
52
def __init__ (self , bus_id , frequency = 400000 ):
@@ -74,7 +74,7 @@ class ExtendedSPI(SPI):
74
74
"""Extended SPI is a busio extension that allows creating a compatible
75
75
SPI object using the Bus ID number. The bus ID is the numbers at the end
76
76
of /dev/spidev#.# and you can find which SPI devices you have by typing
77
- `ls /dev/spi*`"""
77
+ `` ls /dev/spi*` `"""
78
78
79
79
# pylint: disable=invalid-name, redefined-builtin
80
80
class Pin :
Original file line number Diff line number Diff line change 29
29
# Author details
30
30
author = "Adafruit Industries" ,
31
31
32
- install_requires = ["Adafruit-Blinka" ,],
32
+ install_requires = [
33
+ "Adafruit-Blinka" ,
34
+ ],
33
35
# Choose your license
34
36
license = "MIT" ,
35
37
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
You can’t perform that action at this time.
0 commit comments