Skip to content

Commit 68c9522

Browse files
author
Margaret Matocha
committed
added pylint disable=too-many-instance-attributes to resolve getter-setter definitions
1 parent ac63a18 commit 68c9522

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

adafruit_display_text/label.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,10 @@ class Label(displayio.Group):
5858
:param int color: Color of all text in RGB hex
5959
:param double line_spacing: Line spacing of text to display"""
6060

61+
# pylint: disable=too-many-instance-attributes
62+
# This has a lot of getters/setters, maybe it needs cleanup.
63+
64+
6165
def __init__(
6266
self,
6367
font,

0 commit comments

Comments
 (0)