Skip to content

Commit

Permalink
Merge pull request #794 from jphilipsen05/master
Browse files Browse the repository at this point in the history
Update type requirements used for multiple objects.
  • Loading branch information
thinkingserious committed Apr 30, 2019
2 parents 5a60281 + 6c26450 commit bc59079
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions sendgrid/helpers/mail/footer_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ def __init__(self, enable=None, text=None, html=None):
:param enable: Whether this footer should be applied.
:type enable: boolean, optional
:param text: Text content of this footer
:type text: string, optional
:type text: FooterText, optional
:param html: HTML content of this footer
:type html: string, optional
:type html: FooterHtml, optional
"""
self._enable = None
self._text = None
Expand Down
2 changes: 1 addition & 1 deletion sendgrid/helpers/mail/open_tracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def __init__(self, enable=None, substitution_tag=None):
:param enable: If open tracking is enabled.
:type enable: boolean, optional
:param substitution_tag: Tag in body to be replaced by tracking pixel.
:type substitution_tag: string, optional
:type substitution_tag: OpenTrackingSubstitionTag, optional
"""
self._enable = None
self._substitution_tag = None
Expand Down
6 changes: 3 additions & 3 deletions sendgrid/helpers/mail/subscription_tracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ def __init__(
:param enable: Whether this setting is enabled.
:type enable: boolean, optional
:param text: Text to be appended to the email with the link as "<% %>".
:type text: string, optional
:type text: SubscriptionText, optional
:param html: HTML to be appended to the email with the link as "<% %>".
:type html: string, optional
:type html: SubscriptionHtml, optional
:param substitution_tag: Tag replaced with URL. Overrides text, html
params.
:type substitution_tag: string, optional
:type substitution_tag: SubscriptionSubstitutionTag, optional
"""
self._enable = None
self._text = None
Expand Down

0 comments on commit bc59079

Please sign in to comment.