def __init__(self, enabled = True, **options): AccountBase.__init__(self, **options) UpdateMixin.__init__(self, **options) FromNetMixin.__init__(self, **options) self.enabled = enabled self._dirty_error = True # The next error is new
def __init__(self, enabled=True, **options): AccountBase.__init__(self, **options) UpdateMixin.__init__(self, **options) FromNetMixin.__init__(self, **options) self.enabled = enabled self._dirty_error = True # The next error is new
def __init__(self, enabled = True, updateNow = True, **options): AccountBase.__init__(self, **options) UpdateMixin.__init__(self, **options) FromNetMixin.__init__(self, **options) self.emails = ObservableList() self.count = 0 self.seen = set() self._dirty_error = True # The next error is new. log.info('Created EmailAccount: %r. Setting enabled to %r', self, enabled) self.enabled = enabled
def __init__(self, enabled=True, updateNow=True, **options): AccountBase.__init__(self, **options) UpdateMixin.__init__(self, **options) FromNetMixin.__init__(self, **options) self.emails = ObservableList() self.count = 0 self.seen = set() self._dirty_error = True # The next error is new. log.info('Created EmailAccount: %r. Setting enabled to %r', self, enabled) self.enabled = enabled
def _get_options(self): opts = UpdateMixin.get_options(self) return opts