Skip to content

Commit 5ef5265

Browse files
authored
Merge pull request #15 from tcfranks/main
resolves #14 Missing Type Annotations
2 parents 951cdff + 6db12a9 commit 5ef5265

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_ssd1325.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class SSD1325(displayio.Display):
6363
(0, 90, 180, 270)
6464
"""
6565

66-
def __init__(self, bus, **kwargs):
66+
def __init__(self, bus: displayio.FourWire, **kwargs) -> None:
6767
# Patch the init sequence for 32 pixel high displays.
6868
init_sequence = bytearray(_INIT_SEQUENCE)
6969
height = kwargs["height"]

0 commit comments

Comments
 (0)