Skip to content

Commit bb7c99a

Browse files
authored
Merge pull request #113 from tekktrik/fix/typing
Fix Optional type annotation
2 parents 6ca6455 + f29eb23 commit bb7c99a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_rgb_display/st7735.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def __init__(
193193
spi: busio.SPI,
194194
dc: digitalio.DigitalInOut,
195195
cs: digitalio.DigitalInOut,
196-
rst: Optional[digitalio] = None,
196+
rst: Optional[digitalio.DigitalInOut] = None,
197197
width: int = 128,
198198
height: int = 160,
199199
baudrate: int = 16000000,

0 commit comments

Comments
 (0)