Skip to content

Commit dbe4128

Browse files
committed
resolves #12 Missing Type Annotations
1 parent 7a5f334 commit dbe4128

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_il0398.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
class IL0398(displayio.EPaperDisplay):
5151
"""IL0398 driver"""
5252

53-
def __init__(self, bus, **kwargs):
53+
def __init__(self, bus: displayio.FourWire, **kwargs) -> None:
5454
start_sequence = bytearray(_START_SEQUENCE)
5555

5656
width = kwargs["width"]

0 commit comments

Comments
 (0)