Skip to content

Commit 283dad4

Browse files
committed
resolves #15 Missing Type Annotations
1 parent 1095918 commit 283dad4

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)