From 038df361d2aa8d03adb111b2faefa6ce4e5cd641 Mon Sep 17 00:00:00 2001 From: Louie S Date: Sat, 16 Sep 2023 09:36:14 -0400 Subject: Adding groups and entries starting to work --- entry.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'entry.py') 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 -- cgit