8000 Fix feedback typo · randy3465/twilio-python@2f53ab4 · GitHub
[go: up one dir, main page]

Skip to content

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

8000
Appearance settings

Commit 2f53ab4

Browse files
committed
Fix feedback typo
1 parent 991b113 commit 2f53ab4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

twilio/rest/api/v2010/account/message/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def __init__(self, version, account_sid):
3838
self._uri = '/Accounts/{account_sid}/Messages.json'.format(**self._solution)
3939

4040
def create(self, to, from_, status_callback=values.unset,
41-
application_sid=values.unset, provide_feeback=values.unset,
41+
application_sid=values.unset, provide_feedback=values.unset,
4242
body=values.unset, media_url=values.unset):
4343
"""
4444
Create a new MessageInstance
@@ -47,7 +47,7 @@ def create(self, to, from_, status_callback=values.unset,
4747
:param unicode from_: The phone number that initiated the message
4848
:param unicode status_callback: URL Twilio will request when the status changes
4949
:param unicode application_sid: The application to use for callbacks
50-
:param bool provide_feeback: The provide_feeback
50+
:param bool provide_feedback: The provide_feedback
5151
:param unicode body: The body
5252
:param unicode media_url: The media_url
5353
@@ -61,7 +61,7 @@ def create(self, to, from_, status_callback=values.unset,
6161
'MediaUrl': media_url,
6262
'StatusCallback': status_callback,
6363
'ApplicationSid': application_sid,
64-
'ProvideFeeback': provide_feeback,
64+
'ProvideFeedback': provide_feedback,
6565
})
6666

6767
payload = self._version.create(

0 commit comments

Comments
 (0)
0