diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2017-05-24 14:22:26 +0200 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2017-05-24 14:59:50 +0200 |
commit | 37b25fd88400df8cc726470b5d897111f2373b96 (patch) | |
tree | 1c76ce8afe0d788d137229f46e3b99bbed982a5f /src/leap/bitmask/mail/interfaces.py | |
parent | 0bba2d84a584396e888d1f4cd0d0011f5137ab8b (diff) |
[refactor] simplify wrapper create and add_msg
- remove premature optimization for fast-notifies. blobs will cover
that, no point in maintaning the optimization at the price of creeping
complexity.
Diffstat (limited to 'src/leap/bitmask/mail/interfaces.py')
-rw-r--r-- | src/leap/bitmask/mail/interfaces.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leap/bitmask/mail/interfaces.py b/src/leap/bitmask/mail/interfaces.py index 10f5123..9ae6169 100644 --- a/src/leap/bitmask/mail/interfaces.py +++ b/src/leap/bitmask/mail/interfaces.py @@ -36,7 +36,7 @@ class IMessageWrapper(Interface): '(immutable)') cdocs = Attribute('A dictionary with the content-docs, one-indexed') - def create(self, store, notify_just_mdoc=False, pending_inserts_dict={}): + def create(self, store): """ Create the underlying wrapper. """ |