Skip to content

Commit

Permalink
fix: lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
siiddhantt committed Sep 29, 2024
1 parent e8988e8 commit c997602
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/api/user/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def get(self):
except Exception as err:
return make_response(jsonify({"success": False, "error": str(err)}), 400)

return make_response(jsonify({"success": False, "error": str(err)}), 400)
return make_response(jsonify({"success": False}), 400)


@user_ns.route("/api/delete_old")
Expand Down

0 comments on commit c997602

Please sign in to comment.