From e39cafca1a3498be6cb9e4199481ee6d671d48ce Mon Sep 17 00:00:00 2001 From: Jay Rode Date: Tue, 10 Jan 2023 19:55:14 -0500 Subject: [PATCH] Fix type casing --- adafruit_displayio_sh1106.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adafruit_displayio_sh1106.py b/adafruit_displayio_sh1106.py index c3bf2c8..7f0a66d 100644 --- a/adafruit_displayio_sh1106.py +++ b/adafruit_displayio_sh1106.py @@ -62,7 +62,7 @@ class SH1106(displayio.Display): :param int rotation: The rotation of the display. 0, 90, 180 or 270. """ - def __init__(self, bus: displayio.Fourwire, **kwargs) -> None: + def __init__(self, bus: displayio.FourWire, **kwargs) -> None: init_sequence = bytearray(_INIT_SEQUENCE) super().__init__( bus,