Skip to content

Commit 1f420e0

Browse files
authored
Merge pull request #17 from tcfranks/main
Add Missing Type Annotations
2 parents 9a52259 + 427ab49 commit 1f420e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_st7735.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,5 @@
5252
class ST7735(displayio.Display):
5353
"""ST7735 driver"""
5454

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

0 commit comments

Comments
 (0)