From 15079c6a57a7a73caa5bf801503e2daf30732ce9 Mon Sep 17 00:00:00 2001 From: Matt Hauff Date: Tue, 5 Nov 2024 11:50:04 -0800 Subject: [PATCH] Fix pre-commit in chia/rpc/util.py (#18823) --- chia/rpc/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chia/rpc/util.py b/chia/rpc/util.py index 934b7cf3a9be..af31786fe09a 100644 --- a/chia/rpc/util.py +++ b/chia/rpc/util.py @@ -87,7 +87,7 @@ async def rpc_endpoint( def wrap_http_handler( - f: Callable[[dict[str, Any]], Awaitable[EndpointResult]] + f: Callable[[dict[str, Any]], Awaitable[EndpointResult]], ) -> Callable[[aiohttp.web.Request], Awaitable[aiohttp.web.StreamResponse]]: async def inner(request: aiohttp.web.Request) -> aiohttp.web.StreamResponse: request_data = await request.json()