WebOb: Fixes webob.exc.status_map (#13195)

This commit is contained in:
David Salvisberg
2024-12-04 22:59:03 +01:00
committed by GitHub
parent 9e033f3287
commit 0d7a696246

View File

@@ -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]]