-
Notifications
You must be signed in to change notification settings - Fork 733
Open
Description
ud330/Lesson2/step6/project.py
Line 152 in fc0cf20
| 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)
Metadata
Metadata
Assignees
Labels
No labels