aboutsummaryrefslogtreecommitdiff
path: root/src/main.py
diff options
context:
space:
mode:
authorJoris2020-05-10 20:24:24 +0200
committerJoris2020-05-10 20:24:24 +0200
commit8a6e10d401eea8db0947f8c4b309b8a6256f9748 (patch)
tree6e2dc6956ce7825f0f1b6c3ed6f0b4171fe9c274 /src/main.py
parent3e1415c738facb8b0274adb50ae65f218fd59c9b (diff)
downloadtodo-8a6e10d401eea8db0947f8c4b309b8a6256f9748.tar.gz
todo-8a6e10d401eea8db0947f8c4b309b8a6256f9748.tar.bz2
todo-8a6e10d401eea8db0947f8c4b309b8a6256f9748.zip
Add tags panel
Diffstat (limited to 'src/main.py')
-rw-r--r--src/main.py5
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_()