Skip to content

Commit b0d70cb

Browse files
committed
resolves #13 Missing Type Annotations
1 parent 535f0ac commit b0d70cb

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)