Skip to content

Commit a4a3632

Browse files
committed
run black format
1 parent 58c64dd commit a4a3632

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

adafruit_matrixportal/network.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@ def __init__(
6060
wifi = WiFi(status_neopixel=status_neopixel, esp=esp, external_spi=external_spi)
6161

6262
super().__init__(
63-
wifi, extract_values=extract_values, debug=debug,
63+
wifi,
64+
extract_values=extract_values,
65+
debug=debug,
6466
)
6567

6668
gc.collect()

examples/matrixportal_scrolling_bitcoin.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ def text_transform(val):
3030
cwd = ("/" + __file__).rsplit("/", 1)[0]
3131

3232
matrixportal = MatrixPortal(
33-
url=DATA_SOURCE, json_path=DATA_LOCATION, status_neopixel=board.NEOPIXEL,
33+
url=DATA_SOURCE,
34+
json_path=DATA_LOCATION,
35+
status_neopixel=board.NEOPIXEL,
3436
)
3537

3638
matrixportal.add_text(

examples/matrixportal_simpletest.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ def text_transform(val):
3030
cwd = ("/" + __file__).rsplit("/", 1)[0]
3131

3232
matrixportal = MatrixPortal(
33-
url=DATA_SOURCE, json_path=DATA_LOCATION, status_neopixel=board.NEOPIXEL,
33+
url=DATA_SOURCE,
34+
json_path=DATA_LOCATION,
35+
status_neopixel=board.NEOPIXEL,
3436
)
3537

3638
matrixportal.add_text(

0 commit comments

Comments
 (0)