Fixed lint error. (#875)

Signed-off-by: Alex Loyko <[email protected]>
This commit is contained in:
Oleksandr Loyko
2024-12-21 08:39:12 -05:00
committed by GitHub
parent 9777ebe4f8
commit 4091816f84
3 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -386,4 +386,4 @@ class OpenSearchClientResponse(aiohttp.ClientResponse): # type: ignore
if self._body is None:
await self.read()
return self._body.decode("utf-8", "surrogatepass") # type: ignore
return self._body.decode("utf-8", "surrogatepass")
+1 -1
View File
@@ -298,4 +298,4 @@ class OpenSearchClientResponse(aiohttp.ClientResponse): # type: ignore
if self._body is None:
await self.read()
return self._body.decode("utf-8", "surrogatepass") # type: ignore
return self._body.decode("utf-8", "surrogatepass")