fix debugging

This commit is contained in:
Frisk 2023-08-14 18:32:55 +02:00
parent 7f1920b4ea
commit 98fc6e2a8a

View file

@ -43,7 +43,7 @@ class LimitedList(list):
super(LimitedList, self).append(obj) super(LimitedList, self).append(obj)
def __repr__(self): def __repr__(self):
return "\n".join(self) return "\n".join([str(x) for x in self])
class Statistics: class Statistics: