def __init__(self, event, since, progress): Task.__init__(self) NetFuncs.__init__(self) self.progress = progress self.event = event self.since = since
def __init__(self, progress, regs, batch): Task.__init__(self) NetFuncs.__init__(self) self.progress = progress self.regs = regs self.batch = batch
def __init__(self, progress, fetch_photos, batch): Task.__init__(self) NetFuncs.__init__(self) self.progress = progress self.fetch_photos = fetch_photos self.batch = batch
def __init__(self): Task.__init__(self) NetFuncs.__init__(self) self.reports = []
def __init__(self, members, unreg, wrong, have_nv): Task.__init__(self) NetFuncs.__init__(self) self.parser = MemberParser(members, unreg, wrong, have_nv)
def __init__(self, progress, batch): Task.__init__(self) self.progress = progress self.batch = batch
def __init__(self, username, password): Task.__init__(self) NetFuncs.__init__(self) self.username = username self.password = password