Skip to content

Commit d2edd0f

Browse files
authored
Merge pull request #16 from tcfranks/main
resolves #15 Missing Type Annotations
2 parents 1095918 + 283dad4 commit d2edd0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_ssd1331.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
class SSD1331(displayio.Display):
5959
"""SSD1331 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)