diff options
author | Duda Dornelles <ddornell@thoughtworks.com> | 2014-10-28 11:27:38 +0100 |
---|---|---|
committer | Duda Dornelles <ddornell@thoughtworks.com> | 2014-10-28 11:27:38 +0100 |
commit | e39ac081bce3ae0cee09b39ad856a16c8f762dd4 (patch) | |
tree | 9d1378ddbb8a4802e719d1c6acbf153c2b37a8c5 | |
parent | 903940303481a699061ac3416e719389da92d9f2 (diff) |
pep8
-rw-r--r-- | service/pixelated/adapter/mail.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/service/pixelated/adapter/mail.py b/service/pixelated/adapter/mail.py index e10136ec..bba988d6 100644 --- a/service/pixelated/adapter/mail.py +++ b/service/pixelated/adapter/mail.py @@ -137,7 +137,7 @@ class InputMail(Mail): hd[fields.TYPE_KEY] = fields.TYPE_HEADERS_VAL hd[fields.BODY_KEY] = self._get_body_phash() hd[fields.PARTS_MAP_KEY] = \ - walk.walk_msg_tree(walk.get_parts(self._mime_multipart), body_phash=self._get_body_phash())['part_map'] + walk.walk_msg_tree(walk.get_parts(self._mime_multipart), body_phash=self._get_body_phash())['part_map'] self._hd = hd return hd @@ -187,7 +187,6 @@ class InputMail(Mail): class PixelatedMail(Mail): - @staticmethod def from_soledad(fdoc, hdoc, bdoc, soledad_querier=None, parts=None): mail = PixelatedMail() |