Sebastián Ramírez
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
fastapi/exceptions.py
|
|
@ -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) |
|
|
|
|
|
|
|