Skip to content

Commit

Permalink
Update Type Requirements
Browse files Browse the repository at this point in the history
It states that requirement types are string when they are need to by an object.
  • Loading branch information
jphilipsen05 authored Apr 29, 2019
1 parent 5a73513 commit 6c26450
Showing 1 changed file with 3 additions and 3 deletions.
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 6c26450

Please sign in to comment.