Skip to content

Commit ee68228

Browse files
committed
Ran pre-commit
1 parent 968a99c commit ee68228

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

adafruit_rgb_display/st7735.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def __init__(
132132
*,
133133
x_offset=0,
134134
y_offset=0,
135-
rotation=0
135+
rotation=0,
136136
):
137137
super().__init__(
138138
spi,
@@ -232,6 +232,7 @@ def init(self):
232232
if self._invert:
233233
self.write(_INVON, None)
234234

235+
235236
class ST7735S(ST7735):
236237
"""A simple driver for the ST7735S-based displays."""
237238

@@ -283,7 +284,7 @@ def __init__(
283284
*,
284285
x_offset=2,
285286
y_offset=1,
286-
rotation=0
287+
rotation=0,
287288
):
288289
self._bl = bl
289290
# Turn on backlight

0 commit comments

Comments
 (0)