reverted more unitended changes
This commit is contained in:
parent
c3928f756e
commit
2790106790
@ -196,7 +196,7 @@ class TimeSeriesCore:
|
||||
def tail(self, n: int = 6):
|
||||
keys = list(self.time_series.keys())
|
||||
keys = keys[-n:]
|
||||
result = [item for item in self.time_series.items() if item[0] in keys]
|
||||
result = [(key, self.time_series[key]) for key in keys]
|
||||
return result
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user