2023-06-15 13:14:40 +02:00
|
|
|
# This Python file uses the following encoding: utf-8
|
|
|
|
|
|
|
|
from PySide6.QtWidgets import QApplication
|
2023-07-08 20:20:56 +02:00
|
|
|
from . import MainWindow
|
2023-06-15 13:14:40 +02:00
|
|
|
import sys
|
|
|
|
|
2023-07-08 20:20:56 +02:00
|
|
|
def main():
|
2023-06-15 13:14:40 +02:00
|
|
|
app = QApplication(sys.argv)
|
|
|
|
widget = MainWindow()
|
|
|
|
widget.show()
|
|
|
|
sys.exit(app.exec())
|
2023-07-08 20:20:56 +02:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|