docstrings
This commit is contained in:
parent
4f7927fcc4
commit
d42c5af739
1 changed files with 5 additions and 1 deletions
|
|
@ -85,7 +85,11 @@ _INIT_SEQUENCE = (
|
|||
|
||||
# pylint: disable=too-few-public-methods
|
||||
class ILI9341(displayio.Display):
|
||||
"""ILI9341 display driver"""
|
||||
"""
|
||||
ILI9341 display driver
|
||||
|
||||
:param displayio.FourWire bus: bus that the display is connected to
|
||||
"""
|
||||
|
||||
def __init__(self, bus: displayio.FourWire, **kwargs: Any):
|
||||
super().__init__(bus, _INIT_SEQUENCE, **kwargs)
|
||||
|
|
|
|||
Loading…
Reference in a new issue