From 64e904b12ea779e6f286ce1350d88c3413579506 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Mon, 10 Dec 2018 18:20:55 +0400 Subject: [PATCH] :bug: Fix indentation bug --- fastapi/__init__.py | 2 +- fastapi/routing.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) 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(