diff --git a/fastapi/dependencies/utils.py b/fastapi/dependencies/utils.py index 437b3184a..4745f173f 100644 --- a/fastapi/dependencies/utils.py +++ b/fastapi/dependencies/utils.py @@ -428,9 +428,13 @@ async def solve_dependencies( dependency_overrides_provider=dependency_overrides_provider, dependency_cache=dependency_cache, ) - sub_values, sub_errors, background_tasks, sub_response, sub_dependency_cache = ( - solved_result - ) + ( + sub_values, + sub_errors, + background_tasks, + sub_response, + sub_dependency_cache, + ) = solved_result sub_response = cast(Response, sub_response) response.headers.raw.extend(sub_response.headers.raw) if sub_response.status_code: @@ -476,7 +480,10 @@ async def solve_dependencies( values.update(cookie_values) errors += path_errors + query_errors + header_errors + cookie_errors if dependant.body_params: - body_values, body_errors = await request_body_to_args( # body_params checked above + ( + body_values, + body_errors, + ) = await request_body_to_args( # body_params checked above required_params=dependant.body_params, received_body=body ) values.update(body_values) diff --git a/fastapi/openapi/utils.py b/fastapi/openapi/utils.py index 89954f5b1..2d6e38ee0 100644 --- a/fastapi/openapi/utils.py +++ b/fastapi/openapi/utils.py @@ -79,7 +79,7 @@ def get_openapi_security_definitions(flat_dependant: Dependant) -> Tuple[Dict, L def get_openapi_operation_parameters( - all_route_params: Sequence[Field] + all_route_params: Sequence[Field], ) -> List[Dict[str, Any]]: parameters = [] for param in all_route_params: diff --git a/tests/test_security_http_base_optional.py b/tests/test_security_http_base_optional.py index e53874be9..1f3cb1403 100644 --- a/tests/test_security_http_base_optional.py +++ b/tests/test_security_http_base_optional.py @@ -11,7 +11,7 @@ security = HTTPBase(scheme="Other", auto_error=False) @app.get("/users/me") def read_current_user( - credentials: Optional[HTTPAuthorizationCredentials] = Security(security) + credentials: Optional[HTTPAuthorizationCredentials] = Security(security), ): if credentials is None: return {"msg": "Create an account first"} diff --git a/tests/test_security_http_bearer_optional.py b/tests/test_security_http_bearer_optional.py index d34433ec0..9ddd1246f 100644 --- a/tests/test_security_http_bearer_optional.py +++ b/tests/test_security_http_bearer_optional.py @@ -11,7 +11,7 @@ security = HTTPBearer(auto_error=False) @app.get("/users/me") def read_current_user( - credentials: Optional[HTTPAuthorizationCredentials] = Security(security) + credentials: Optional[HTTPAuthorizationCredentials] = Security(security), ): if credentials is None: return {"msg": "Create an account first"} diff --git a/tests/test_security_http_digest_optional.py b/tests/test_security_http_digest_optional.py index 52ee0484f..d0af7afa4 100644 --- a/tests/test_security_http_digest_optional.py +++ b/tests/test_security_http_digest_optional.py @@ -11,7 +11,7 @@ security = HTTPDigest(auto_error=False) @app.get("/users/me") def read_current_user( - credentials: Optional[HTTPAuthorizationCredentials] = Security(security) + credentials: Optional[HTTPAuthorizationCredentials] = Security(security), ): if credentials is None: return {"msg": "Create an account first"}