Skip to content

Commit a002f17

Browse files
author
Melissa LeBlanc-Williams
committed
Added kwargs for additional params
1 parent 8d28c28 commit a002f17

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_ili9341.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,5 +84,5 @@
8484
# pylint: disable=too-few-public-methods
8585
class ILI9341(displayio.Display):
8686
"""ILI9341 display driver"""
87-
def __init__(self, bus):
88-
super().__init__(bus, _INIT_SEQUENCE, width=320, height=240)
87+
def __init__(self, bus, **kwargs):
88+
super().__init__(bus, _INIT_SEQUENCE, width=320, height=240, **kwargs)

0 commit comments

Comments
 (0)