Fix the exception handler HTTPException type error (#146)

This commit is contained in:
Wu Clan
2023-06-17 19:55:04 +08:00
committed by GitHub
parent 8251c66fc3
commit 616243c0dc

View File

@ -3,8 +3,9 @@
import json
from fastapi import FastAPI, Request
from fastapi.exceptions import RequestValidationError, HTTPException
from fastapi.exceptions import RequestValidationError
from pydantic import ValidationError
from starlette.exceptions import HTTPException
from starlette.responses import JSONResponse
from uvicorn.protocols.http.h11_impl import STATUS_PHRASES