mirror of
https://github.com/rjNemo/xafsManager
synced 2026-06-10 04:36:42 +00:00
20 lines
318 B
Python
20 lines
318 B
Python
"""
|
|
Last change: Tuesday dec 17 2019
|
|
|
|
@author: Ruidy Nemausat
|
|
|
|
"""
|
|
import sys
|
|
from PyQt5.QtWidgets import QApplication, QWidget
|
|
|
|
|
|
def main():
|
|
app = QApplication(sys.argv)
|
|
w = QWidget()
|
|
w.setWindowTitle("P65 XAFS Scan Manager")
|
|
w.show()
|
|
sys.exit(app.exec_())
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|