]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:bug: Fix indentation bug
authorSebastián Ramírez <tiangolo@gmail.com>
Mon, 10 Dec 2018 14:20:55 +0000 (18:20 +0400)
committerSebastián Ramírez <tiangolo@gmail.com>
Mon, 10 Dec 2018 14:20:55 +0000 (18:20 +0400)
fastapi/__init__.py
fastapi/routing.py

index 209a0c6d6b1fa88a955e496ddafe5eb22f69c37d..a1f6b0a5d725912491b4b6db465af7aed78e6567 100644 (file)
@@ -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
index c42aeccea06bb20d8dcb66fcbc8120f684e66324..ef6c13de7f58d71a8aa315de464aa84938a4d23c 100644 (file)
@@ -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(