Skip to content

Commit 79903ca

Browse files
authored
Merge pull request #10 from tcfranks/main
Add missing type annotations
2 parents 820034c + bef5dde commit 79903ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_ssd1681.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class SSD1681(displayio.EPaperDisplay):
5959
Display rotation
6060
"""
6161

62-
def __init__(self, bus, **kwargs):
62+
def __init__(self, bus: displayio.FourWire, **kwargs) -> None:
6363
start_sequence = bytearray(_START_SEQUENCE)
6464

6565
width = kwargs["width"]

0 commit comments

Comments
 (0)