diff options
Diffstat (limited to 'src/main.py')
-rw-r--r-- | src/main.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/main.py b/src/main.py index e791196..c4ff4e9 100644 --- a/src/main.py +++ b/src/main.py @@ -11,11 +11,6 @@ args = arguments.parser().parse_args() database = db.init.init(args.database if args.database != None else 'database') app = QtWidgets.QApplication(sys.argv) -# # Allows to catch Ctrl-C event -# timer = QtCore.QTimer() -# timer.timeout.connect(lambda: None) -# timer.start(100) - window = gui.window.get(database) window.show() res = app.exec_() |