Skip to content

Commit 8c9b0d1

Browse files
authored
Merge pull request #18 from tcfranks/main
resolves #17 Missing Type Annotations
2 parents be782a9 + 8a7bff7 commit 8c9b0d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_ssd1351.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
class SSD1351(displayio.Display):
5959
"""SSD1351 driver"""
6060

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

0 commit comments

Comments
 (0)