diff options
| author | nasrlol <nsrddyn@gmail.com> | 2024-12-03 00:13:37 +0100 |
|---|---|---|
| committer | nasrlol <nsrddyn@gmail.com> | 2024-12-03 00:13:37 +0100 |
| commit | 2d35af8096a2345ea69462f835a671751e012138 (patch) | |
| tree | 9fdf6ade2469ef61ab0f3a6006c8d973413ff95e /source | |
| parent | abe5d839f019ab859dad6443985e4bb38dad18f2 (diff) | |
fixed the feature instance all
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: | |||
| 52 | microphone_available = 0 | 52 | microphone_available = 0 |
| 53 | 53 | ||
| 54 | 54 | ||
| 55 | class fe: | 55 | class 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 | |||
| 10 | from PySide6.QtCore import Qt | 10 | from PySide6.QtCore import Qt |
| 11 | import hardware_driver as lcd | 11 | import hardware_driver as lcd |
| 12 | import features as fe | 12 | import features as fe |
| 13 | import sys | 13 | import sys |
| 14 | 14 | ||
| 15 | F = fe() | 15 | F = fe.feat() |
| 16 | L = lcd.LCD() | 16 | L = lcd.LCD() |
| 17 | 17 | ||
| 18 | 18 | ||
