mirror of
https://github.com/RolandWH/SIPPCompare.git
synced 2025-05-10 00:31:49 +01:00
12 lines
169 B
Python
12 lines
169 B
Python
import sys
|
|
|
|
from PyQt6.QtWidgets import QApplication
|
|
|
|
from main_window import SIPPCompare
|
|
|
|
|
|
app = QApplication(sys.argv)
|
|
window = SIPPCompare()
|
|
window.show()
|
|
app.exec()
|