8000 Update base.py · Web5design/twilio-python@660fd16 · GitHub
[go: up one dir, main page]

Skip to content

Commit 660fd16

Browse files
committed
Update base.py
Fixing twilio/rest/resources/base.py:48:80: E501 line too long (80 > 79 characters) from my last commit... uggghhhh PEP8
1 parent 69eac4d commit 660fd16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

twilio/rest/resources/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def make_request(method, url, params=None, data=None, headers=None,
4545
elif isinstance(v, string_types):
4646
udata[key] = v.encode('utf-8')
4747
else:
48-
raise ValueError('data should be a integer or binary or string')
48+
raise ValueError('data should be iinteger or binary or string')
4949
data = urlencode(udata)
5050

5151
if params is not None:

0 commit comments

Comments
 (0)
0