13 lines
228 B
Python
Executable File
13 lines
228 B
Python
Executable File
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import sys, time
|
|
from PySide.QtGui import QApplication
|
|
from pylot.core.util.widgets import PropertiesDlg
|
|
|
|
app = QApplication(sys.argv)
|
|
|
|
win = PropertiesDlg()
|
|
win.show()
|
|
app.exec_()
|