diff --git a/main.py b/main.py index cb7ff35..06aa8b0 100644 --- a/main.py +++ b/main.py @@ -67,7 +67,8 @@ def new_user(): @app.route("/removeuser", methods=['GET']) def remove_user(): user_id = request.args.get("id") - c.execute(f"DELETE * FROM tags WHERE userid={user_id}") #Noch eine Bestätigung nötig + #Noch eine Bestätigung nötig + c.execute(f"DELETE * FROM tags WHERE userid={user_id}") c.execute(f"DELETE * FROM users WHERE id={user_id}") conn.commit()