mirror of https://github.com/tiangolo/fastapi.git
🐛 Fix `HTTPException` header type annotations (#9648)
This commit is contained in:
parent
ae5c51afa6
commit
6dd8e567cc
|
|
@ -11,7 +11,7 @@ class HTTPException(StarletteHTTPException):
|
|||
self,
|
||||
status_code: int,
|
||||
detail: Any = None,
|
||||
headers: Optional[Dict[str, Any]] = None,
|
||||
headers: Optional[Dict[str, str]] = None,
|
||||
) -> None:
|
||||
super().__init__(status_code=status_code, detail=detail, headers=headers)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue