remove old comments

This commit is contained in:
Andreas Zweili 2019-01-24 21:38:37 +01:00
parent 3e657a56ac
commit 8d7d5ead2d
1 changed files with 0 additions and 5 deletions

View File

@ -6,14 +6,9 @@ import sys
from main_window import MainWindow
if __name__ == "__main__":
# creates the main application, only one of these is every needed
# in an application
app = QApplication(sys.argv)
# creates a new window, you can have multiple of these
window = MainWindow()
# show the window, they are hidden by default
window.show()
window.config.read()
# start the application
sys.exit(app.exec_())