Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigo-barraza committed Nov 26, 2024
1 parent 3cbc692 commit f5adefa
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion auth-api/src/auth_api/resources/v1/org.py
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,6 @@ def put_mailing_address(org_id):
"""Update the mailing address specified by the provided id with the request body."""
request_json = request.get_json()
valid_format, errors = schema_utils.validate(request_json, "org")
token_info = g.jwt_oidc_token_info
if not valid_format:
return {"message": schema_utils.serialize(errors)}, HTTPStatus.BAD_REQUEST
try:
Expand Down

0 comments on commit f5adefa

Please sign in to comment.