Skip to content

Commit

Permalink
remove the print function
Browse files Browse the repository at this point in the history
  • Loading branch information
liniiiiii committed Oct 18, 2024
1 parent 7386407 commit 158c144
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Evaluation/normaliser.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 158c144

Please sign in to comment.