10 lines
176 B
Python
10 lines
176 B
Python
from PyQt5.QtWidgets import *
|
|
|
|
class main(QWidget):
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
app = QApplication([])
|
|
window = main()
|
|
window.show()
|
|
app.exec() |