Skip to content

Commit 13140a5

Browse files
authored
Merge pull request #16 from tcfranks/main
resolves #13 Missing Type Annotations
2 parents 535f0ac + b0d70cb commit 13140a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_il91874.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
class IL91874(displayio.EPaperDisplay):
7070
"""IL91874 display driver"""
7171

72-
def __init__(self, bus, **kwargs):
72+
def __init__(self, bus: displayio.FourWire, **kwargs) -> None:
7373
start_sequence = bytearray(_START_SEQUENCE)
7474

7575
width = kwargs["width"]

0 commit comments

Comments
 (0)