diff --git a/group.py b/group.py index 39bc52e..49bdb7c 100644 --- a/group.py +++ b/group.py @@ -1,8 +1,8 @@ class Group(): - def __init__(self, id, subject, owner): + def __init__(self, id, owner, subject, subjectOwner): self.id = id self.subject = subject + self.subjectOwner = subjectOwner self.owner = owner - self.participants = { }