diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 209a0c6d6..a1f6b0a5d 100644 --- a/fastapi/__init__.py +++ b/fastapi/__init__.py @@ -1,6 +1,6 @@ """FastAPI framework, high performance, easy to learn, fast to code, ready for production""" -__version__ = "0.1.7" +__version__ = "0.1.8" from .applications import FastAPI from .routing import APIRouter diff --git a/fastapi/routing.py b/fastapi/routing.py index c42aeccea..ef6c13de7 100644 --- a/fastapi/routing.py +++ b/fastapi/routing.py @@ -66,9 +66,9 @@ def get_app( raise HTTPException( status_code=400, detail="There was an error parsing the body" ) - values, errors = await solve_dependencies( - request=request, dependant=dependant, body=body - ) + values, errors = await solve_dependencies( + request=request, dependant=dependant, body=body + ) if errors: errors_out = ValidationError(errors) raise HTTPException(