Skip to content

Commit f94c074

Browse files
committed
pylint
1 parent fe0564b commit f94c074

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

circuitpython_display_frame.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,7 @@
4040

4141

4242
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-
43+
# pylint: disable=too-many-arguments,too-many-locals
4944
"""
5045
A rounded rectangle frame with a text label at the top center.
5146
@@ -61,6 +56,9 @@ class Frame(displayio.Group):
6156
:param stroke: Used for the outline. Will not change the outer bound size set by ``width`` and
6257
``height``.
6358
"""
59+
LABEL_ALIGN_RIGHT = 2
60+
LABEL_ALIGN_CENTER = 1
61+
LABEL_ALIGN_LEFT = 0
6462

6563
def __init__(
6664
self,

0 commit comments

Comments
 (0)