mirror of
https://github.com/brmlab/edubrm.git
synced 2025-06-08 21:03:59 +02:00
10 lines
171 B
Python
Executable file
10 lines
171 B
Python
Executable file
#!/usr/bin/python
|
|
|
|
import sys
|
|
from PyQt4.QtGui import QApplication
|
|
from main import Main
|
|
|
|
app = QApplication(sys.argv)
|
|
window = Main()
|
|
window.show()
|
|
sys.exit(app.exec_())
|