summaryrefslogtreecommitdiff
path: root/entry.py
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2023-09-16 09:36:14 -0400
committerLouie S <louie@example.com>2023-09-16 09:36:14 -0400
commit038df361d2aa8d03adb111b2faefa6ce4e5cd641 (patch)
tree30d1083356ab6be4f0f4edae70d9bf3e4cd47d1d /entry.py
parente89fd9cb4e88aa8f27f40c5c5073feb1a3aa1ce3 (diff)
Adding groups and entries starting to work
Diffstat (limited to 'entry.py')
-rw-r--r--entry.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/entry.py b/entry.py
index b2877cc..2c01b3f 100644
--- a/entry.py
+++ b/entry.py
@@ -4,7 +4,8 @@ from PyQt5.QtGui import QFont
from PyQt5.QtWidgets import QLabel
class Entry:
- def __init__(self, desc, due = "", due_alt = "", link = ""):
+ def __init__(self, parent_id, desc, due = "", due_alt = "", link = ""):
+ self.parent_id = parent_id
self.desc = desc
self.due = due
self.due_alt = due_alt