Skip to content

Commit 1673431

Browse files
committed
resolves #14 Missing Type Annotations
1 parent ca629a1 commit 1673431

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_ssd1608.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
class SSD1608(displayio.EPaperDisplay):
4949
"""SSD1608 driver"""
5050

51-
def __init__(self, bus, **kwargs):
51+
def __init__(self, bus: displayio.FourWire, **kwargs) -> None:
5252
start_sequence = bytearray(_START_SEQUENCE)
5353
width = kwargs["width"]
5454
start_sequence[4] = (width - 1) & 0xFF

0 commit comments

Comments
 (0)