From fc6bad3636ec6119f21c07534c782217d536edc0 Mon Sep 17 00:00:00 2001 From: Anne Barela <1911920+TheKitty@users.noreply.github.com> Date: Tue, 15 Jul 2025 18:53:28 -0400 Subject: [PATCH] Update DVI_Framebuffer.py --- Fruit_Jam/CircuitPython_DVI_Video/DVI_Framebuffer.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Fruit_Jam/CircuitPython_DVI_Video/DVI_Framebuffer.py b/Fruit_Jam/CircuitPython_DVI_Video/DVI_Framebuffer.py index 5a4bbbd37..99abd96b3 100644 --- a/Fruit_Jam/CircuitPython_DVI_Video/DVI_Framebuffer.py +++ b/Fruit_Jam/CircuitPython_DVI_Video/DVI_Framebuffer.py @@ -34,11 +34,13 @@ display_group = displayio.Group() display.root_group = display_group # Create labels +# pylint: disable=line-too-long text = " 1 2 3 4 5 6 7 8 9 0 1 2" text_area = label.Label(terminalio.FONT, text=text, color=0xFFFFFF) text_area.x = 0 text_area.y = 5 display_group.append(text_area) +# pylint: disable=line-too-long text = "123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890" text_area = label.Label(terminalio.FONT, text=text, color=0xFFFFFF) text_area.x = 0