mirror of
https://github.com/RolandWH/SIPPCompare.git
synced 2025-03-14 22:01:36 +00:00
13 lines
192 B
Python
13 lines
192 B
Python
from PyQt6.QtWidgets import QApplication
|
|
|
|
import sys
|
|
|
|
import main_window
|
|
|
|
|
|
app = QApplication(sys.argv)
|
|
window = main_window.SIPPCompare()
|
|
window.show()
|
|
window.show_platform_edit()
|
|
app.exec()
|