Skip to content

Commit f434ec6

Browse files
author
Doug Black
committed
PEP8
1 parent cc3e20d commit f434ec6

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

twilio/__init__.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,10 @@ def __init__(self, status, uri, msg="", code=None):
2727
def __str__(self):
2828
if self.code:
2929
error_message = "HTTP ERROR %s: %s \n\n " \
30-
"Please see: https://api.twilio.com/docs/errors/%s for more information. \n\n" \
31-
"Requested URI: %s" % (self.status, self.msg, str(self.code), self.uri)
30+
"Please see: https://api.twilio.com/docs/errors/%s " \
31+
"for more information. \n\n" "Requested URI: %s" % (
32+
self.status, self.msg, str(self.code), self.uri
33+
)
3234
else:
3335
error_message = "HTTP ERROR %s: %s \n %s" % (self.status, self.msg, self.uri)
3436

0 commit comments

Comments
 (0)