From 89ee9a6b754b69eeef525024a68b80958aeef0a2 Mon Sep 17 00:00:00 2001 From: Delirious Lettuce Date: Tue, 31 Oct 2017 18:23:22 -0600 Subject: [PATCH] Rename docstring parameter to match function argument --- sendgrid/helpers/mail/mail.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sendgrid/helpers/mail/mail.py b/sendgrid/helpers/mail/mail.py index 5243dcd59..95394a7e4 100644 --- a/sendgrid/helpers/mail/mail.py +++ b/sendgrid/helpers/mail/mail.py @@ -329,7 +329,7 @@ def sections(self): def add_section(self, section): """Add a Section to this Mail. - :type attachment: Section + :type section: Section """ if self._sections is None: self._sections = []