Skip to content

Commit 6bdd9de

Browse files
committed
added type annotation None
1 parent 587da54 commit 6bdd9de

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

adafruit_st7789.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141
"""
4242

4343
import displayio
44-
4544
__version__ = "0.0.0-auto.0"
4645
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_ST7789.git"
4746

@@ -60,5 +59,5 @@
6059
class ST7789(displayio.Display):
6160
"""ST7789 driver"""
6261

63-
def __init__(self, bus, **kwargs):
62+
def __init__(self, bus, **kwargs) -> None:
6463
super().__init__(bus, _INIT_SEQUENCE, **kwargs)

0 commit comments

Comments
 (0)