From 6db12a961430e8afa8608fe19f4d527eab7f4835 Mon Sep 17 00:00:00 2001 From: Thomas Franks Date: Wed, 24 Aug 2022 11:13:04 -0400 Subject: [PATCH] resolves #14 Missing Type Annotations --- adafruit_ssd1325.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adafruit_ssd1325.py b/adafruit_ssd1325.py index 23927f6..e6df5f0 100644 --- a/adafruit_ssd1325.py +++ b/adafruit_ssd1325.py @@ -63,7 +63,7 @@ class SSD1325(displayio.Display): (0, 90, 180, 270) """ - def __init__(self, bus, **kwargs): + def __init__(self, bus: displayio.FourWire, **kwargs) -> None: # Patch the init sequence for 32 pixel high displays. init_sequence = bytearray(_INIT_SEQUENCE) height = kwargs["height"]