Skip to content

Commit

Permalink
Merge pull request #15 from tcfranks/main
Browse files Browse the repository at this point in the history
resolves #14 Missing Type Annotations
  • Loading branch information
tekktrik committed Aug 24, 2022
2 parents 951cdff + 6db12a9 commit 5ef5265
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adafruit_ssd1325.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class SSD1325(displayio.Display):
(0, 90, 180, 270)
"""

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

0 comments on commit 5ef5265

Please sign in to comment.