Skip to content

Commit cf322ff

Browse files
authored
Merge pull request #29 from tekktrik/dev/fix-type-annotation
Fix faulty type annotation
2 parents b9c53a0 + 38976cb commit cf322ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_displayio_ssd1306.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class SSD1306(displayio.Display):
6868
"""
6969

7070
def __init__(
71-
self, bus: Union[displayio.Fourwire, displayio.I2CDisplay], **kwargs
71+
self, bus: Union[displayio.FourWire, displayio.I2CDisplay], **kwargs
7272
) -> None:
7373
# Patch the init sequence for 32 pixel high displays.
7474
init_sequence = bytearray(_INIT_SEQUENCE)

0 commit comments

Comments
 (0)