diff options
| -rw-r--r-- | source/main.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source/main.py b/source/main.py index 20cc29b..5bad9d9 100644 --- a/source/main.py +++ b/source/main.py @@ -14,7 +14,6 @@ import sys L = lcd() - class mainWindow(QMainWindow): def __init__(self): super().__init__() @@ -39,7 +38,7 @@ class mainWindow(QMainWindow): central_widget.setLayout(layout) def clear_screen(): - lcd.clear() + L.clear() self.label.setText("Cleared the LCD screen", self) |
