Update post_methods.py
Browse files- post_methods.py +1 -2
post_methods.py
CHANGED
|
@@ -36,5 +36,4 @@ def add_user():
|
|
| 36 |
return jsonify(dict(new_user)), 201
|
| 37 |
|
| 38 |
except Exception as e:
|
| 39 |
-
return jsonify({"error": str(e)}), 500
|
| 40 |
-
[file content end]
|
|
|
|
| 36 |
return jsonify(dict(new_user)), 201
|
| 37 |
|
| 38 |
except Exception as e:
|
| 39 |
+
return jsonify({"error": str(e)}), 500
|
|
|