diff options
author | Louie S <louie@example.com> | 2023-09-16 09:36:14 -0400 |
---|---|---|
committer | Louie S <louie@example.com> | 2023-09-16 09:36:14 -0400 |
commit | 038df361d2aa8d03adb111b2faefa6ce4e5cd641 (patch) | |
tree | 30d1083356ab6be4f0f4edae70d9bf3e4cd47d1d /entry.py | |
parent | e89fd9cb4e88aa8f27f40c5c5073feb1a3aa1ce3 (diff) |
Adding groups and entries starting to work
Diffstat (limited to 'entry.py')
-rw-r--r-- | entry.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |