Skip to content

Commit 1686242

Browse files
authored
Merge pull request #8 from tcfranks/main
Add Missing Type Annotations
2 parents 47caa81 + e34b36e commit 1686242

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_ssd1680.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class SSD1680(displayio.EPaperDisplay):
6363
Display rotation
6464
"""
6565

66-
def __init__(self, bus, **kwargs):
66+
def __init__(self, bus: displayio.Fourwire, **kwargs) -> None:
6767
stop_sequence = bytearray(_STOP_SEQUENCE)
6868
try:
6969
bus.reset()

0 commit comments

Comments
 (0)