From 3ed112e8a93d1b6fdcdf3f9fe9e8df986114cc1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Thu, 30 May 2019 19:43:02 +0400 Subject: [PATCH] :bug: Fix type declaration of HTTPException (#279) --- fastapi/exceptions.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fastapi/exceptions.py b/fastapi/exceptions.py index 97f955a73..cbd82b44a 100644 --- a/fastapi/exceptions.py +++ b/fastapi/exceptions.py @@ -1,10 +1,12 @@ +from typing import Any + from pydantic import ValidationError from starlette.exceptions import HTTPException as StarletteHTTPException class HTTPException(StarletteHTTPException): def __init__( - self, status_code: int, detail: str = None, headers: dict = None + self, status_code: int, detail: Any = None, headers: dict = None ) -> None: super().__init__(status_code=status_code, detail=detail) self.headers = headers