added __repr__ for everything
This commit is contained in:
@ -11,6 +11,9 @@ class BSCache:
|
||||
self.data = None
|
||||
self.pt = ProdThread(self.run)
|
||||
|
||||
def __repr__(self):
|
||||
return str(self.data)
|
||||
|
||||
|
||||
def __iter__(self):
|
||||
return self
|
||||
|
Reference in New Issue
Block a user