Skip to content

Commit 61d114b

Browse files
committed
isort and black execution
1 parent fdcaed5 commit 61d114b

File tree

8 files changed

+15
-9
lines changed

8 files changed

+15
-9
lines changed

docs/conf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@
2929

3030

3131
intersphinx_mapping = {
32-
"python": ("https://docs.python.org/3", None),"BusDevice": ("https://docs.circuitpython.org/projects/busdevice/en/latest/", None),
32+
"python": ("https://docs.python.org/3", None),
33+
"BusDevice": ("https://docs.circuitpython.org/projects/busdevice/en/latest/", None),
3334
"Register": ("https://docs.circuitpython.org/projects/register/en/latest/", None),
3435
"CircuitPython": ("https://docs.circuitpython.org/en/latest/", None),
3536
}

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,7 @@
5959
],
6060
# What does your project relate to?
6161
keywords="adafruit blinka circuitpython micropython gpio_expander gpio expander PCA9534 PCA9535 PCA9555 TCA9534 "
62-
"TCA9535 TCA9555",
63-
62+
"TCA9535 TCA9555",
6463
# You can just specify the packages manually here if your project is
6564
# simple. Or you can use find_packages().
6665
# TODO: IF LIBRARY FILES ARE A PACKAGE FOLDER,

tests/test_pca9534.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
import gpio_expander
21
import pytest
32
from busio import I2C
43

4+
import gpio_expander
5+
56

67
def test_pca9534_object(mock_i2c, registry_list_8_gpio):
78
_dev = gpio_expander.PCA9534(I2C(2, 3), 4) # fake addresses

tests/test_pca9535.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
import gpio_expander
21
import pytest
32
from busio import I2C
43

4+
import gpio_expander
5+
56

67
def test_pca9535_object(mock_i2c, registry_list_16_gpio):
78
_dev = gpio_expander.PCA9535(I2C(2, 3), 4) # fake addresses

tests/test_pca9555.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
import gpio_expander
21
import pytest
32
from busio import I2C
43

4+
import gpio_expander
5+
56

67
def test_pca9555_object(mock_i2c, registry_list_16_gpio):
78
_dev = gpio_expander.PCA9555(I2C(2, 3), 4) # fake addresses

tests/test_tca9534.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
import gpio_expander
21
import pytest
32
from busio import I2C
43

4+
import gpio_expander
5+
56

67
def test_tca9534_object(mock_i2c, registry_list_8_gpio):
78
_dev = gpio_expander.TCA9534(I2C(2, 3), 4) # fake addresses

tests/test_tca9535.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
import gpio_expander
21
import pytest
32
from busio import I2C
43

4+
import gpio_expander
5+
56

67
def test_tca9535_object(mock_i2c, registry_list_16_gpio):
78
_dev = gpio_expander.TCA9535(I2C(2, 3), 4) # fake addresses

tests/test_tca9555.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
import gpio_expander
21
import pytest
32
from busio import I2C
43

4+
import gpio_expander
5+
56

67
def test_tca9555_object(mock_i2c, registry_list_16_gpio):
78
_dev = gpio_expander.TCA9555(I2C(2, 3), 4) # fake addresses

0 commit comments

Comments
 (0)