@@ -47,7 +47,10 @@ class Cache:
@property
def latest(self):
return self.values[0]
try:
return self.values[-1]
except IndexError:
return None
def __repr__(self):
n = len(self.times)
The note is not visible to the blocked user.