FIXED changed double quoted strings to single quotes for consistency

This commit is contained in:
Andrew Bryant 2024-04-26 14:41:56 -04:00
parent bc33385ebe
commit 7d5fc7428a
2 changed files with 2 additions and 3 deletions

View File

@ -9,5 +9,5 @@ def login():
@accounts.route('/login', methods=['POST']) @accounts.route('/login', methods=['POST'])
def authenticate(): def authenticate():
return jsonify({"message": "Login successful"}), 201 return jsonify({'message': 'Login successful'}), 201

View File

@ -9,6 +9,5 @@ def sign_up():
@accounts.route('/register', methods=['POST']) @accounts.route('/register', methods=['POST'])
def register(): def register():
# Registration logic return jsonify({'message': 'Registration successful'}), 201
return jsonify({"message": "Registration successful"}), 201