Skip to content

Commit 35479b3

Browse files
authored
Merge pull request #73 from tekktrik/doc/add-attr-docstrings
Add docstrings for attributes
2 parents 217af2b + 64f585e commit 35479b3

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

adafruit_portalbase/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,14 @@ def __init__(
7070
debug=False,
7171
):
7272
self.network = network
73+
"""The :py:class:`~adafruit_portalbase.NetworkBase`-derived instance provided"""
7374
self.graphics = graphics
75+
"""The :py:class:`~adafruit_portalbase.GraphicsBase`-derived instance provided"""
7476
self.splash = self.graphics.splash
77+
"""The :py:meth:`displayio.Group()` object that acts as the splash screen
78+
for this device."""
7579
self.display = self.graphics.display
80+
"""The :py:meth:`displayio.Display` object representing the screen for this device"""
7681

7782
# Font Cache
7883
self._fonts = {}

0 commit comments

Comments
 (0)