Browse Source

🚨 Fix black linting (#682)

pull/681/head
François Voron 5 years ago
committed by Sebastián Ramírez
parent
commit
8609beb9ab
  1. 15
      fastapi/dependencies/utils.py
  2. 2
      fastapi/openapi/utils.py
  3. 2
      tests/test_security_http_base_optional.py
  4. 2
      tests/test_security_http_bearer_optional.py
  5. 2
      tests/test_security_http_digest_optional.py

15
fastapi/dependencies/utils.py

@ -428,9 +428,13 @@ async def solve_dependencies(
dependency_overrides_provider=dependency_overrides_provider, dependency_overrides_provider=dependency_overrides_provider,
dependency_cache=dependency_cache, 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) sub_response = cast(Response, sub_response)
response.headers.raw.extend(sub_response.headers.raw) response.headers.raw.extend(sub_response.headers.raw)
if sub_response.status_code: if sub_response.status_code:
@ -476,7 +480,10 @@ async def solve_dependencies(
values.update(cookie_values) values.update(cookie_values)
errors += path_errors + query_errors + header_errors + cookie_errors errors += path_errors + query_errors + header_errors + cookie_errors
if dependant.body_params: 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 required_params=dependant.body_params, received_body=body
) )
values.update(body_values) values.update(body_values)

2
fastapi/openapi/utils.py

@ -79,7 +79,7 @@ def get_openapi_security_definitions(flat_dependant: Dependant) -> Tuple[Dict, L
def get_openapi_operation_parameters( def get_openapi_operation_parameters(
all_route_params: Sequence[Field] all_route_params: Sequence[Field],
) -> List[Dict[str, Any]]: ) -> List[Dict[str, Any]]:
parameters = [] parameters = []
for param in all_route_params: for param in all_route_params:

2
tests/test_security_http_base_optional.py

@ -11,7 +11,7 @@ security = HTTPBase(scheme="Other", auto_error=False)
@app.get("/users/me") @app.get("/users/me")
def read_current_user( def read_current_user(
credentials: Optional[HTTPAuthorizationCredentials] = Security(security) credentials: Optional[HTTPAuthorizationCredentials] = Security(security),
): ):
if credentials is None: if credentials is None:
return {"msg": "Create an account first"} return {"msg": "Create an account first"}

2
tests/test_security_http_bearer_optional.py

@ -11,7 +11,7 @@ security = HTTPBearer(auto_error=False)
@app.get("/users/me") @app.get("/users/me")
def read_current_user( def read_current_user(
credentials: Optional[HTTPAuthorizationCredentials] = Security(security) credentials: Optional[HTTPAuthorizationCredentials] = Security(security),
): ):
if credentials is None: if credentials is None:
return {"msg": "Create an account first"} return {"msg": "Create an account first"}

2
tests/test_security_http_digest_optional.py

@ -11,7 +11,7 @@ security = HTTPDigest(auto_error=False)
@app.get("/users/me") @app.get("/users/me")
def read_current_user( def read_current_user(
credentials: Optional[HTTPAuthorizationCredentials] = Security(security) credentials: Optional[HTTPAuthorizationCredentials] = Security(security),
): ):
if credentials is None: if credentials is None:
return {"msg": "Create an account first"} return {"msg": "Create an account first"}

Loading…
Cancel
Save