From 4bb6254396e60f3aa2c22f36699e8a43777cb280 Mon Sep 17 00:00:00 2001 From: Simone Tesini Date: Fri, 1 Aug 2025 19:14:07 +0200 Subject: [PATCH] add basic ranking algo --- backend/src/room.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/room.py b/backend/src/room.py index a9ddd7c..4c405c0 100644 --- a/backend/src/room.py +++ b/backend/src/room.py @@ -38,7 +38,7 @@ class Room: rank += translate(song.user_score, lowest_score, highest_score, 0.0, USER_SCORE_WEIGHT) - last10items = self.history[-10:] + # last10items = self.history[-10:] return rank