File size: 336 Bytes
6bcacf9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from typing import List
from frontend.gui.app_window import MainWindow
from PyQt5.QtWidgets import QApplication
import sys
from app_settings import AppSettings


def start_gui(
    argv: List[str],
    app_settings: AppSettings,
):
    app = QApplication(sys.argv)
    window = MainWindow(app_settings)
    window.show()
    app.exec()