Skip to content

Commit

Permalink
Fix Optional type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
tekktrik authored Apr 28, 2023
1 parent 6ca6455 commit f29eb23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adafruit_rgb_display/st7735.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def __init__(
spi: busio.SPI,
dc: digitalio.DigitalInOut,
cs: digitalio.DigitalInOut,
rst: Optional[digitalio] = None,
rst: Optional[digitalio.DigitalInOut] = None,
width: int = 128,
height: int = 160,
baudrate: int = 16000000,
Expand Down

0 comments on commit f29eb23

Please sign in to comment.