From 381b980a459434f7dac0247c712943c3a9a87941 Mon Sep 17 00:00:00 2001 From: cube Date: Tue, 4 Mar 2025 23:18:11 +0000 Subject: [PATCH] Update 'CARDPUTER CircuitPython/full_display_test.py' --- CARDPUTER CircuitPython/full_display_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CARDPUTER CircuitPython/full_display_test.py b/CARDPUTER CircuitPython/full_display_test.py index c3097c3..5070411 100644 --- a/CARDPUTER CircuitPython/full_display_test.py +++ b/CARDPUTER CircuitPython/full_display_test.py @@ -20,9 +20,9 @@ board.DISPLAY.root_group = text_area while True: key = keyb.scan() if key == "BACKSP": - text = text[:-1] + text = text[:-1] elif key == "CTRLD": text = "Press CTRL+D to clear text\n\n" else: text = text+key - text_area.text = text + text_area.text = text \ No newline at end of file