diff --git a/src/app.py b/src/app.py index 6171827..e40ec54 100644 --- a/src/app.py +++ b/src/app.py @@ -52,7 +52,7 @@ def add_item(): else: # item is valid fill_db(extr) - return jsonify({'status': 0, , "info": "item added to database"}), 200 + return jsonify({'status': 0, "info": "item added to database"}), 200 else: # item not valid or can't be parsed return jsonify({'status': 1, "info": "item not valid or can't be parsed"}), 400