From 158c1445cd016809a9212366086a986a8df2f705 Mon Sep 17 00:00:00 2001 From: liniiiiii Date: Fri, 18 Oct 2024 11:02:27 +0200 Subject: [PATCH] remove the print function --- Evaluation/normaliser.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Evaluation/normaliser.py b/Evaluation/normaliser.py index 428b61f75..ec8750326 100644 --- a/Evaluation/normaliser.py +++ b/Evaluation/normaliser.py @@ -8,7 +8,6 @@ class Normaliser: def string(self, v): """Normalise string. Discard leading and trailing whitespaces and convert to lower case. Examples: "Example" -> "example", " example " -> "example".""" - print(str(v).strip().lower()) return str(v).strip().lower() def integer(self, v):