docstrings

This commit is contained in:
foamyguy 2021-09-28 19:53:27 -05:00
parent 4f7927fcc4
commit d42c5af739

View file

@ -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)