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: