summaryrefslogtreecommitdiff
path: root/group.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
commitb883e45bd29fd53cc318cf1abeda8fbcfeb69a22 (patch)
tree61e887edebd75bac3987527ce8fee86f34a3edc6 /group.py
parent1a266e4159976d2753d8dbd787fc8155ba321859 (diff)
Editing groups is working
Diffstat (limited to 'group.py')
-rw-r--r--group.py4
1 files changed, 1 insertions, 3 deletions
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: