aboutsummaryrefslogtreecommitdiffstats
path: root/SoundboardEngine.py
diff options
context:
space:
mode:
Diffstat (limited to 'SoundboardEngine.py')
-rw-r--r--SoundboardEngine.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/SoundboardEngine.py b/SoundboardEngine.py
index 899f9d2..a9c3241 100644
--- a/SoundboardEngine.py
+++ b/SoundboardEngine.py
@@ -16,7 +16,6 @@
import random
-from AboutWindow import AboutWindow
from PySide6.QtWidgets import (
QMainWindow,
QStackedWidget,
@@ -24,16 +23,18 @@ from PySide6.QtWidgets import (
QWidget,
)
+from AboutWindow import AboutWindow
from AudioPlayer import AudioPlayer, PlayerStatus
from CategoryCardWidget import CategoryCardWidget
from CategoryListWidget import CategoryListWidget
-from SoundListItemWidget import QHBoxLayout, QLabel
from Soundboard import Soundboard
+from SoundListItemWidget import QHBoxLayout, QLabel
from SoundsListWidget import SoundsListWidget
from StatusbarWidget import StatusbarWidget
APP_VERSION = "0.1.0"
+
class SoundboardEngineWindow(QMainWindow):
def __init__(self, soundboard: Soundboard, app_version):
super().__init__()
@@ -83,7 +84,9 @@ class SoundboardEngineWindow(QMainWindow):
self.footer_layout.setContentsMargins(0, 0, 0, 10)
self.footer_layout.addStretch()
- self.footer_label = QLabel(f"Soundboard Engine {self.app_version} | <a href='about'>About</a>")
+ self.footer_label = QLabel(
+ f"Soundboard Engine {self.app_version} | <a href='about'>About</a>"
+ )
self.footer_label.linkActivated.connect(self.toggle_about_page)
self.footer_layout.addWidget(self.footer_label)