From 78743cf4c0b07d9b6395932672ed96a824c9f013 Mon Sep 17 00:00:00 2001 From: Quentin Pradet Date: Mon, 30 Sep 2024 14:49:49 +0400 Subject: [PATCH] Ignore lint error It's not related to Python 3.13. --- elastic_transport/_node/_http_aiohttp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elastic_transport/_node/_http_aiohttp.py b/elastic_transport/_node/_http_aiohttp.py index cc5df74..ade544b 100644 --- a/elastic_transport/_node/_http_aiohttp.py +++ b/elastic_transport/_node/_http_aiohttp.py @@ -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()