From 98fc6e2a8a6843390e1b56d11bd1f7aa21c5f98a Mon Sep 17 00:00:00 2001 From: Frisk Date: Mon, 14 Aug 2023 18:32:55 +0200 Subject: [PATCH] fix debugging --- src/statistics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/statistics.py b/src/statistics.py index f4902bd..b218168 100644 --- a/src/statistics.py +++ b/src/statistics.py @@ -43,7 +43,7 @@ class LimitedList(list): super(LimitedList, self).append(obj) def __repr__(self): - return "\n".join(self) + return "\n".join([str(x) for x in self]) class Statistics: