Skip to content

Commit bef5dde

Browse files
committed
Add missing type annotations
1 parent 820034c commit bef5dde

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)