From 5bc14e94ad3a6171c23cc63e4645c75044db7e90 Mon Sep 17 00:00:00 2001 From: Yannik Schmidt Date: Thu, 18 Jun 2020 21:44:00 +0200 Subject: [PATCH] fix typo --- python/httpAPI.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/httpAPI.py b/python/httpAPI.py index a6bd494..f9692be 100644 --- a/python/httpAPI.py +++ b/python/httpAPI.py @@ -24,7 +24,7 @@ def getPlayer(): return ("Player not found", 404) return "{}'s Rating: {}".format(p.name, int(p.rating.mu - 2*p.rating.sigma)) -@app.route('/get-outcome-prediction'. methods=["POST"]) +@app.route('/get-outcome-prediction', methods=["POST"]) def getOutcomePrediction(): '''Make a prediction based tww submitted teams of players'''