openfm-qt/main.py

12 lines
272 B
Python
Raw Permalink Normal View History

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