Skip to content

Commit a4d4fc0

Browse files
v1.1.0 pylint applied.
1 parent 66c7603 commit a4d4fc0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

contentstack/https_connection.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,7 @@ def get(self, url):
5454
"""
5555
try:
5656
self.headers.update(user_agents())
57-
response = requests.get(url, verify=True,
58-
timeout=self.default_timeout, headers=self.headers)
57+
response = requests.get(url, verify=True, headers=self.headers)
5958
response.encoding = 'utf-8'
6059
return response.json()
6160
except Timeout:

0 commit comments

Comments
 (0)