Skip to content

Commit 9983735

Browse files
committed
Use _construct_response in AsyncClient._make_request
1 parent 16d51b7 commit 9983735

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

tweepy/asynchronous/client.py

+1-10
Original file line numberDiff line numberDiff line change
@@ -155,16 +155,7 @@ async def _make_request(
155155
if self.return_type is dict:
156156
return response
157157

158-
data = response.get("data")
159-
data = self._process_data(data, data_type=data_type)
160-
161-
includes = response.get("includes", {})
162-
includes = self._process_includes(includes)
163-
164-
errors = response.get("errors", [])
165-
meta = response.get("meta", {})
166-
167-
return Response(data, includes, errors, meta)
158+
return self._construct_response(response, data_type=data_type)
168159

169160

170161
class AsyncClient(AsyncBaseClient):

0 commit comments

Comments
 (0)