We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 528c5d9 commit f531d34Copy full SHA for f531d34
1 file changed
twitter.py
@@ -4971,16 +4971,16 @@ def _RequestStream(self, url, verb, data=None):
4971
Returns:
4972
A twitter stream.
4973
'''
4974
-<<<<<<< HEAD
+
4975
if verb == 'POST':
4976
return requests.post(url, data=data, stream=True,
4977
auth=self.__auth)
4978
-=======
4979
if verb == 'POST': return requests.post(url, data=data, stream=True,
4980
auth=self.__auth,
4981
timeout=self._requests_timeout
4982
)
4983
->>>>>>> pr/8
4984
if verb == 'GET':
4985
url = self._BuildUrl(url, extra_params=data)
4986
return requests.get(url, stream=True, auth=self.__auth,
0 commit comments