diff options
author | Kali Kaneko <kali@leap.se> | 2016-04-15 16:06:56 -0400 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2016-04-15 16:11:18 -0400 |
commit | ec0183a792223e6acd8343beb0e5ba1bf3df43b1 (patch) | |
tree | 71e3a99a3f6e732c81ebefcd8a23f9d14cf77cb8 /src/leap/mail/imap/account.py | |
parent | d8ee6357c518a17a243840e42aeeae948bc03b2f (diff) |
[refactor] change IMAPAccount signature
for consistency with the previous Account change.
Diffstat (limited to 'src/leap/mail/imap/account.py')
-rw-r--r-- | src/leap/mail/imap/account.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/leap/mail/imap/account.py b/src/leap/mail/imap/account.py index 0b8e019..459b0ba 100644 --- a/src/leap/mail/imap/account.py +++ b/src/leap/mail/imap/account.py @@ -60,7 +60,7 @@ class IMAPAccount(object): selected = None - def __init__(self, user_id, store, d=defer.Deferred()): + def __init__(self, store, user_id, d=defer.Deferred()): """ Keeps track of the mailboxes and subscriptions handled by this account. @@ -69,12 +69,13 @@ class IMAPAccount(object): You can either pass a deferred to this constructor, or use `callWhenReady` method. + :param store: a Soledad instance. + :type store: Soledad + :param user_id: The identifier of the user this account belongs to (user id, in the form user@provider). :type user_id: str - :param store: a Soledad instance. - :type store: Soledad :param d: a deferred that will be fired with this IMAPAccount instance when the account is ready to be used. |