mirror of https://github.com/tiangolo/fastapi.git
🐛 Fix type declaration of HTTPException (#279)
This commit is contained in:
parent
9da626eb2c
commit
3ed112e8a9
|
|
@ -1,10 +1,12 @@
|
||||||
|
from typing import Any
|
||||||
|
|
||||||
from pydantic import ValidationError
|
from pydantic import ValidationError
|
||||||
from starlette.exceptions import HTTPException as StarletteHTTPException
|
from starlette.exceptions import HTTPException as StarletteHTTPException
|
||||||
|
|
||||||
|
|
||||||
class HTTPException(StarletteHTTPException):
|
class HTTPException(StarletteHTTPException):
|
||||||
def __init__(
|
def __init__(
|
||||||
self, status_code: int, detail: str = None, headers: dict = None
|
self, status_code: int, detail: Any = None, headers: dict = None
|
||||||
) -> None:
|
) -> None:
|
||||||
super().__init__(status_code=status_code, detail=detail)
|
super().__init__(status_code=status_code, detail=detail)
|
||||||
self.headers = headers
|
self.headers = headers
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue