summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/features.py2
-rw-r--r--source/main.py4
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:
52 microphone_available = 0 52 microphone_available = 0
53 53
54 54
55class fe: 55class feat:
56 56
57 def __init__(self): 57 def __init__(self):
58 pass 58 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 (
3 QLabel, 3 QLabel,
4 QMainWindow, 4 QMainWindow,
5 QPushButton, 5 QPushButton,
6 QLabel,
7 QVBoxLayout, 6 QVBoxLayout,
8 QWidget, 7 QWidget,
9) 8)
9
10from PySide6.QtCore import Qt 10from PySide6.QtCore import Qt
11import hardware_driver as lcd 11import hardware_driver as lcd
12import features as fe 12import features as fe
13import sys 13import sys
14 14
15F = fe() 15F = fe.feat()
16L = lcd.LCD() 16L = lcd.LCD()
17 17
18 18