Skip to content

Commit 199b3aa

Browse files
authored
Merge pull request #15 from tcfranks/main
resolves #14 Missing Type Annotations
2 parents ca629a1 + 1673431 commit 199b3aa

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)