From 0d7a69624686e635c3dd9eb3864eca7bfc580ca1 Mon Sep 17 00:00:00 2001 From: David Salvisberg Date: Wed, 4 Dec 2024 22:59:03 +0100 Subject: [PATCH] WebOb: Fixes `webob.exc.status_map` (#13195) --- stubs/WebOb/webob/exc.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stubs/WebOb/webob/exc.pyi b/stubs/WebOb/webob/exc.pyi index e3f9e4b36..5316b33cb 100644 --- a/stubs/WebOb/webob/exc.pyi +++ b/stubs/WebOb/webob/exc.pyi @@ -123,4 +123,4 @@ class HTTPExceptionMiddleware: def __init__(self, application: WSGIApplication) -> None: ... def __call__(self, environ: WSGIEnvironment, start_response: StartResponse) -> Iterable[bytes]: ... -status_map: dict[int, WSGIHTTPException] +status_map: dict[int, type[WSGIHTTPException]]