You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
response=make_response(json.dumps('Failed to revoke token for given user.', 400))
The parenthesis should end before the coma, not after the 400:
Error:
response = make_response(json.dumps('Failed to revoke token for given user.', 400))
Fix:
response = make_response(json.dumps('Failed to revoke token for given user.'), 400)
The text was updated successfully, but these errors were encountered:
ud330/Lesson2/step6/project.py
Line 152 in fc0cf20
The parenthesis should end before the coma, not after the 400:
Error:
response = make_response(json.dumps('Failed to revoke token for given user.', 400))
Fix:
response = make_response(json.dumps('Failed to revoke token for given user.'), 400)
The text was updated successfully, but these errors were encountered: