Skip to content

Commit 8a7bff7

Browse files
committed
resolves #17 Missing Type Annotations
1 parent be782a9 commit 8a7bff7

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)