1
0
mirror of https://github.com/RolandWH/SIPPCompare.git synced 2025-03-15 14:21:36 +00:00

13 lines
192 B
Python
Raw Normal View History

from PyQt6.QtWidgets import QApplication
2025-01-28 15:25:41 +00:00
import sys
import main_window
2025-01-28 15:25:41 +00:00
app = QApplication(sys.argv)
window = main_window.SIPPCompare()
window.show()
window.show_platform_edit()
2025-01-28 15:25:41 +00:00
app.exec()