summaryrefslogtreecommitdiff
path: root/service/pixelated/adapter/pixelated_mail.py
diff options
context:
space:
mode:
Diffstat (limited to 'service/pixelated/adapter/pixelated_mail.py')
-rw-r--r--service/pixelated/adapter/pixelated_mail.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/service/pixelated/adapter/pixelated_mail.py b/service/pixelated/adapter/pixelated_mail.py
index d1b6bf36..44ebd08c 100644
--- a/service/pixelated/adapter/pixelated_mail.py
+++ b/service/pixelated/adapter/pixelated_mail.py
@@ -47,7 +47,6 @@ class InputMail:
'body': self.body
}
-
@staticmethod
def from_dict(mail_dict):
input_mail = InputMail()
@@ -262,7 +261,6 @@ class PixelatedMail:
'body': self.body
}
-
@staticmethod
def from_dict(mail_dict):
return from_dict(mail_dict)
@@ -284,4 +282,3 @@ def from_dict(mail_dict):
mail.tags = set(mail_dict.get('tags', []))
mail.status = set(mail_dict.get('status', []))
return mail
-