@@ -215,7 +215,7 @@ async def get(
215215 ** kwargs ,
216216 ) -> transport .Response :
217217 return await self .request (
218- "GET" , url , data , headers , max_allowed_time , timeout , ** kwargs
218+ "GET" , url , data , headers , max_allowed_time , timeout , total_attempts , ** kwargs
219219 )
220220
221221 @functools .wraps (request )
@@ -230,7 +230,7 @@ async def post(
230230 ** kwargs ,
231231 ) -> transport .Response :
232232 return await self .request (
233- "POST" , url , data , headers , max_allowed_time , timeout , ** kwargs
233+ "POST" , url , data , headers , max_allowed_time , timeout , total_attempts , ** kwargs
234234 )
235235
236236 @functools .wraps (request )
@@ -245,7 +245,7 @@ async def put(
245245 ** kwargs ,
246246 ) -> transport .Response :
247247 return await self .request (
248- "PUT" , url , data , headers , max_allowed_time , timeout , ** kwargs
248+ "PUT" , url , data , headers , max_allowed_time , timeout , total_attempts , ** kwargs
249249 )
250250
251251 @functools .wraps (request )
@@ -260,7 +260,7 @@ async def patch(
260260 ** kwargs ,
261261 ) -> transport .Response :
262262 return await self .request (
263- "PATCH" , url , data , headers , max_allowed_time , timeout , ** kwargs
263+ "PATCH" , url , data , headers , max_allowed_time , timeout , total_attempts , ** kwargs
264264 )
265265
266266 @functools .wraps (request )
@@ -275,7 +275,7 @@ async def delete(
275275 ** kwargs ,
276276 ) -> transport .Response :
277277 return await self .request (
278- "DELETE" , url , data , headers , max_allowed_time , timeout , ** kwargs
278+ "DELETE" , url , data , headers , max_allowed_time , timeout , total_attempts , ** kwargs
279279 )
280280
281281 async def close (self ) -> None :
0 commit comments