Skip to content

Commit 2fab641

Browse files
authored
Merge pull request #13 from tcfranks/main
resolves #12 Missing Type Annotations
2 parents 7a5f334 + dbe4128 commit 2fab641

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)