Skip to content

Commit 4b7ad53

Browse files
authored
Merge pull request #17 from tcfranks/main
Add Missing Type Annotations
2 parents 0f92764 + 0b3f8ad commit 4b7ad53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_hx8357.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,5 @@
6060
class HX8357(displayio.Display):
6161
"""HX8357D driver"""
6262

63-
def __init__(self, bus, **kwargs):
63+
def __init__(self, bus: displayio.FourWire, **kwargs) -> None:
6464
super().__init__(bus, _INIT_SEQUENCE, **kwargs)

0 commit comments

Comments
 (0)