Browse Source

updating more relative imports

master
Rick 5 years ago
parent
commit
6b6f92d976
2 changed files with 2 additions and 4 deletions
  1. +1
    -3
      event.py
  2. +1
    -1
      group.py

+ 1
- 3
event.py View File

@ -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()


+ 1
- 1
group.py View File

@ -1,4 +1,4 @@
from admidio_python_api.exceptions import MemberNotFoundException
from .exceptions import MemberNotFoundException
class Group:


Loading…
Cancel
Save