We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe0564b commit f94c074Copy full SHA for f94c074
circuitpython_display_frame.py
@@ -40,12 +40,7 @@
40
41
42
class Frame(displayio.Group):
43
- # pylint: disable=too-many-arguments
44
-
45
- LABEL_ALIGN_RIGHT = 2
46
- LABEL_ALIGN_CENTER = 1
47
- LABEL_ALIGN_LEFT = 0
48
+ # pylint: disable=too-many-arguments,too-many-locals
49
"""
50
A rounded rectangle frame with a text label at the top center.
51
@@ -61,6 +56,9 @@ class Frame(displayio.Group):
61
56
:param stroke: Used for the outline. Will not change the outer bound size set by ``width`` and
62
57
``height``.
63
58
59
+ LABEL_ALIGN_RIGHT = 2
60
+ LABEL_ALIGN_CENTER = 1
+ LABEL_ALIGN_LEFT = 0
64
65
def __init__(
66
self,
0 commit comments