1
0
mirror of https://github.com/borg-qt/borg-qt.git synced 2024-06-29 12:30:47 +02:00
borg-qt/borg_qt/borg_qt.py
2019-01-26 11:25:26 +01:00

16 lines
260 B
Python
Executable File

#!/usr/bin/python3
from PyQt5.QtWidgets import QApplication
import sys
from main_window import MainWindow
if __name__ == "__main__":
app = QApplication(sys.argv)
window = MainWindow()
window.show()
window.start()
sys.exit(app.exec_())