diff options
Diffstat (limited to 'source')
| -rw-r--r-- | source/features.py | 2 | ||||
| -rw-r--r-- | source/main.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/source/features.py b/source/features.py index a19ec7a..f5f2d04 100644 --- a/source/features.py +++ b/source/features.py @@ -52,7 +52,7 @@ except Exception as e: microphone_available = 0 -class fe: +class feat: def __init__(self): pass diff --git a/source/main.py b/source/main.py index 7a37bf3..c587c6e 100644 --- a/source/main.py +++ b/source/main.py @@ -3,16 +3,16 @@ from PySide6.QtWidgets import ( QLabel, QMainWindow, QPushButton, - QLabel, QVBoxLayout, QWidget, ) + from PySide6.QtCore import Qt import hardware_driver as lcd import features as fe import sys -F = fe() +F = fe.feat() L = lcd.LCD() |
