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()