summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authornasrlol <nsrddyn@gmail.com>2024-12-03 00:13:37 +0100
committernasrlol <nsrddyn@gmail.com>2024-12-03 00:13:37 +0100
commit2d35af8096a2345ea69462f835a671751e012138 (patch)
tree9fdf6ade2469ef61ab0f3a6006c8d973413ff95e /source
parentabe5d839f019ab859dad6443985e4bb38dad18f2 (diff)
fixed the feature instance all
Diffstat (limited to 'source')
-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