Skip to content

Commit

Permalink
Ignore lint error
Browse files Browse the repository at this point in the history
It's not related to Python 3.13.
  • Loading branch information
pquentin committed Sep 30, 2024
1 parent ce5fdf5 commit 78743cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion elastic_transport/_node/_http_aiohttp.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ async def perform_request( # type: ignore[override]
data=body_to_send,
headers=request_headers,
timeout=aiohttp_timeout,
**kwargs,
**kwargs, # type: ignore[arg-type]
) as response:
if is_head: # We actually called 'GET' so throw away the data.
await response.release()
Expand Down

0 comments on commit 78743cf

Please sign in to comment.