Skip to content

Commit

Permalink
Update app.py
Browse files Browse the repository at this point in the history
missing a curly brace
  • Loading branch information
shreyshrey1 authored Feb 11, 2018
1 parent a6eb6e0 commit 9bffa66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def get_all_users():
if request.method == 'GET':
return jsonify({'status': 'success', 'data': ['aria', 'tim', 'varun', 'alex']})
else:
return jsonify({"status": "failed")
return jsonify({"status": "failed"})

if __name__ == '__main__':
app.run(debug=True)

0 comments on commit 9bffa66

Please sign in to comment.