From 19e1a706ea85eae12c1438bc570a33bd19912f4b Mon Sep 17 00:00:00 2001 From: palash16 Date: Mon, 30 Oct 2017 21:44:47 +0530 Subject: [PATCH] refactors code, issue #503 refactors code --- sendgrid/helpers/mail/mail.py | 25 +++++++------------------ 1 file changed, 7 insertions(+), 18 deletions(-) diff --git a/sendgrid/helpers/mail/mail.py b/sendgrid/helpers/mail/mail.py index 60c85c82c..1d1f7dcb9 100644 --- a/sendgrid/helpers/mail/mail.py +++ b/sendgrid/helpers/mail/mail.py @@ -61,28 +61,17 @@ def get(self): if self.template_id is not None: mail["template_id"] = self.template_id - if self.sections is not None: - sections = {} - for key in self.sections: - sections.update(key.get()) - mail["sections"] = sections - - if self.headers is not None: - headers = {} - for key in self.headers: - headers.update(key.get()) - mail["headers"] = headers + for attribute in [(self.sections, "sections"), (self.headers, "headers"), (self.custom_args, "custom_args")]: + if attribute[0] is not None: + tmp = {} + for key in attribute[0]: + tmp.update(key.get()) + mail[attribute[1]] = tmp if self.categories is not None: mail["categories"] = [category.get() for category in self.categories] - - if self.custom_args is not None: - custom_args = {} - for key in self.custom_args: - custom_args.update(key.get()) - mail["custom_args"] = custom_args - + if self.send_at is not None: mail["send_at"] = self.send_at