|
|
@ -1,4 +1,4 @@ |
|
|
|
from admidio_python_api.exceptions import MemberNotFoundException |
|
|
|
from .exceptions import MemberNotFoundException |
|
|
|
|
|
|
|
|
|
|
|
class Event(): |
|
|
@ -45,7 +45,6 @@ class Event(): |
|
|
|
"""Return leaders and members in group, combined""" |
|
|
|
return self.leaders + self.participants |
|
|
|
|
|
|
|
|
|
|
|
def getAllAttend(self): |
|
|
|
"""Return leaders and members which actually attend""" |
|
|
|
members = list() |
|
|
@ -56,7 +55,6 @@ class Event(): |
|
|
|
|
|
|
|
return members |
|
|
|
|
|
|
|
|
|
|
|
def getAllMaybe(self): |
|
|
|
"""Return leaders and members which will maybe attend""" |
|
|
|
members = list() |
|
|
|