From e34b36e79a87c0a7095648d4dde136ed8080f4b4 Mon Sep 17 00:00:00 2001 From: Thomas Franks Date: Thu, 25 Aug 2022 17:04:49 -0400 Subject: [PATCH] Add Missing Type Annotations --- adafruit_ssd1680.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adafruit_ssd1680.py b/adafruit_ssd1680.py index 7e2cfcf..490725f 100755 --- a/adafruit_ssd1680.py +++ b/adafruit_ssd1680.py @@ -63,7 +63,7 @@ class SSD1680(displayio.EPaperDisplay): Display rotation """ - def __init__(self, bus, **kwargs): + def __init__(self, bus: displayio.Fourwire, **kwargs) -> None: stop_sequence = bytearray(_STOP_SEQUENCE) try: bus.reset()