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