🐛 Use proper import for Request -- fixes #492 (#493)

This commit is contained in:
Kamal Gill 2019-09-01 05:51:42 -07:00 committed by Sebastián Ramírez
parent 203e10596f
commit 4642f63a1e
1 changed files with 1 additions and 1 deletions

View File

@ -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