From b883e45bd29fd53cc318cf1abeda8fbcfeb69a22 Mon Sep 17 00:00:00 2001 From: Louie S Date: Sat, 16 Sep 2023 09:36:14 -0400 Subject: Editing groups is working --- group.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'group.py') diff --git a/group.py b/group.py index 4cca7c6..07206eb 100644 --- a/group.py +++ b/group.py @@ -1,7 +1,6 @@ -import datetime from PyQt5.QtCore import Qt from PyQt5.QtGui import QFont -from PyQt5.QtWidgets import QHBoxLayout, QLabel, QPushButton, QVBoxLayout +from PyQt5.QtWidgets import QLabel, QVBoxLayout Globals = __import__("globals") class Group: @@ -36,7 +35,6 @@ class Group: """ Retrieve this group's entries """ - # TODO this should be pulling from a database output = [] for e in Globals.entries: if e.parent_id == self.id: -- cgit