Skip to content

Commit 9d4ca03

Browse files
authored
Merge pull request #11 from greatest-gatsby/main
Fix type casing
2 parents acf86cd + e39cafc commit 9d4ca03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_displayio_sh1106.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class SH1106(displayio.Display):
6262
:param int rotation: The rotation of the display. 0, 90, 180 or 270.
6363
"""
6464

65-
def __init__(self, bus: displayio.Fourwire, **kwargs) -> None:
65+
def __init__(self, bus: displayio.FourWire, **kwargs) -> None:
6666
init_sequence = bytearray(_INIT_SEQUENCE)
6767
super().__init__(
6868
bus,

0 commit comments

Comments
 (0)