From ccbd35b86f59bbba319f96f4e070d7f8fbbcd9a5 Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Wed, 24 Jul 2024 09:31:27 +0200 Subject: [PATCH] ignore type until https://github.com/encode/starlette/pull/2403 is merged --- cashu/mint/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cashu/mint/app.py b/cashu/mint/app.py index 0b37c024..c6e89b7e 100644 --- a/cashu/mint/app.py +++ b/cashu/mint/app.py @@ -91,7 +91,7 @@ async def catch_exceptions(request: Request, call_next): # Add exception handlers -app.add_exception_handler(RequestValidationError, request_validation_exception_handler) +app.add_exception_handler(RequestValidationError, request_validation_exception_handler) # type: ignore # Add routers if settings.debug_mint_only_deprecated: