From 507302562f2724664b8933fca418bfd4d1831220 Mon Sep 17 00:00:00 2001
From: Gjorgji <g.noveski@yahoo.com>
Date: Thu, 13 Apr 2023 17:26:49 +0200
Subject: [PATCH] Removed slash at end of url path

---
 app/api/dexi.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/api/dexi.py b/app/api/dexi.py
index b74b0f3..f101c93 100644
--- a/app/api/dexi.py
+++ b/app/api/dexi.py
@@ -175,7 +175,7 @@ def create_recommendation_text(kpi, amount_changed, caused_by, step_size):
     return f'In order to improve the KPI of {kpi} by {int(amount_changed)*10}%, {caused_by} should be improved by {step_size*10}%\n'
 
 
-@app.route("/dss/get_specific_recommendation/", methods=["GET"])
+@app.route("/dss/get_specific_recommendation", methods=["GET"])
 def get_recommendation():
     recommendation_for_plus_one_analysis = ""
     recommendation_for_plus_two_analysis = ""
-- 
GitLab