Browse Source

🐛 Fix type declaration of HTTPException (#279)

pull/282/head
Sebastián Ramírez 6 years ago
committed by GitHub
parent
commit
3ed112e8a9
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      fastapi/exceptions.py

4
fastapi/exceptions.py

@ -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…
Cancel
Save