From 5295edaadebfa06608a42f362e7e58778a42a564 Mon Sep 17 00:00:00 2001 From: "corentin.bollet" Date: Fri, 3 Feb 2023 09:39:29 +0100 Subject: [PATCH] suppression d'une ligne en trop et ajustements --- basket.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/basket.py b/basket.py index 2db9ec8..8756b6e 100644 --- a/basket.py +++ b/basket.py @@ -18,5 +18,4 @@ def totalPoints(joueur): ligne = ligne.strip().split(' ') coord_x, coord_y = int(ligne[3]), int(ligne[4]) nb_total_points += points(coord_x, coord_y) - return nb_total_points - return True \ No newline at end of file + return nb_total_points \ No newline at end of file