@@ -49,12 +49,12 @@ class Label(displayio.Group):
49
49
Must include a capital M for measuring character size.
50
50
:param str text: Text to display
51
51
:param int max_glyphs: Unnecessary parameter (provided only for direct compability
52
- with label.py)
52
+ with label.py)
53
53
:param int color: Color of all text in RGB hex
54
54
:param int background_color: Color of the background, use `None` for transparent
55
55
:param double line_spacing: Line spacing of text to display
56
56
:param boolean background_tight: Set `True` only if you want background box to tightly
57
- surround text
57
+ surround text
58
58
:param int padding_top: Additional pixels added to background bounding box at top
59
59
:param int padding_bottom: Additional pixels added to background bounding box at bottom
60
60
:param int padding_left: Additional pixels added to background bounding box at left
@@ -63,11 +63,10 @@ class Label(displayio.Group):
63
63
Tuple with decimal percentage of width and height.
64
64
(E.g. (0,0) is top left, (1.0, 0.5): is middle right.)
65
65
:param (int,int) anchored_position: Position relative to the anchor_point. Tuple
66
- containing x,y pixel coordinates.
66
+ containing x,y pixel coordinates.
67
67
:param int scale: Integer value of the pixel scaling
68
68
:param bool save_text: Set True to save the text string as a constant in the
69
- label structure. Set False to reduce memory use.
70
- """
69
+ label structure. Set False to reduce memory use."""
71
70
72
71
# pylint: disable=unused-argument, too-many-instance-attributes, too-many-locals, too-many-arguments
73
72
# pylint: disable=too-many-branches, no-self-use, too-many-statements
0 commit comments