Skip to content

Commit

Permalink
Merge pull request #11 from greatest-gatsby/main
Browse files Browse the repository at this point in the history
Fix type casing
  • Loading branch information
dhalbert committed Jan 11, 2023
2 parents acf86cd + e39cafc commit 9d4ca03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adafruit_displayio_sh1106.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class SH1106(displayio.Display):
:param int rotation: The rotation of the display. 0, 90, 180 or 270.
"""

def __init__(self, bus: displayio.Fourwire, **kwargs) -> None:
def __init__(self, bus: displayio.FourWire, **kwargs) -> None:
init_sequence = bytearray(_INIT_SEQUENCE)
super().__init__(
bus,
Expand Down

0 comments on commit 9d4ca03

Please sign in to comment.