WIP
diff --git a/webhook-receive.py b/webhook-receive.py
index c26897b..2e4191e 100644
--- a/webhook-receive.py
+++ b/webhook-receive.py
@@ -4,8 +4,7 @@
 
 @app.route('/webhook', methods=['POST'])
 def webhook_receiver():
-    data = request.json  # Get the JSON data from the incoming request
-    # Process the data and perform actions based on the event
+    data = request.json
     print("Received webhook data:", data)
     return jsonify({'message': 'Webhook received successfully'}), 200