Skip to content

Commit e34b36e

Browse files
committed
Add Missing Type Annotations
1 parent 47caa81 commit e34b36e

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)