We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8efc2c7 commit fa81103Copy full SHA for fa81103
sendgrid/sendgrid.py
@@ -110,7 +110,7 @@ def _make_request(self, message):
110
# Using API key
111
req.add_header('Authorization', 'Bearer ' + self.password)
112
113
- response = urllib_request.urlopen(req, self.timeout)
+ response = urllib_request.urlopen(req, timeout = self.timeout)
114
body = response.read()
115
return response.getcode(), body
116
0 commit comments