Skip to content

Commit 8f731e1

Browse files
committed
Fixing Travis pylint error
Line too long
1 parent f23f66d commit 8f731e1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

adafruit_display_text/label.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ class Label(displayio.Group):
5555
:param int max_glyphs: The largest quantity of glyphs we will display
5656
:param int color: Color of all text in RGB hex
5757
:param double line_spacing: Line spacing of text to display"""
58-
def __init__(self, font, *, text=None, max_glyphs=None, color=0xffffff, line_spacing=1.25, **kwargs):
58+
def __init__(self, font, *, text=None, max_glyphs=None, color=0xffffff,
59+
line_spacing=1.25, **kwargs):
5960
if not max_glyphs and not text:
6061
raise RuntimeError("Please provide a max size, or initial text")
6162
if not max_glyphs:

0 commit comments

Comments
 (0)