Skip to content

Commit

Permalink
Ran pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
makermelissa committed Feb 4, 2023
1 parent 968a99c commit ee68228
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions adafruit_rgb_display/st7735.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def __init__(
*,
x_offset=0,
y_offset=0,
rotation=0
rotation=0,
):
super().__init__(
spi,
Expand Down Expand Up @@ -232,6 +232,7 @@ def init(self):
if self._invert:
self.write(_INVON, None)


class ST7735S(ST7735):
"""A simple driver for the ST7735S-based displays."""

Expand Down Expand Up @@ -283,7 +284,7 @@ def __init__(
*,
x_offset=2,
y_offset=1,
rotation=0
rotation=0,
):
self._bl = bl
# Turn on backlight
Expand Down

0 comments on commit ee68228

Please sign in to comment.