From 4642f63a1ebde30da9c9169229bb37a4932cce63 Mon Sep 17 00:00:00 2001 From: Kamal Gill Date: Sun, 1 Sep 2019 05:51:42 -0700 Subject: [PATCH] :bug: Use proper import for Request -- fixes #492 (#493) --- fastapi/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastapi/exceptions.py b/fastapi/exceptions.py index a85dfa82c..310da940d 100644 --- a/fastapi/exceptions.py +++ b/fastapi/exceptions.py @@ -2,8 +2,8 @@ from typing import Any, Sequence from pydantic import ValidationError from pydantic.error_wrappers import ErrorList -from requests import Request from starlette.exceptions import HTTPException as StarletteHTTPException +from starlette.requests import Request from starlette.websockets import WebSocket