aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/argaze/DataStructures.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/argaze/DataStructures.py b/src/argaze/DataStructures.py
index 15811c2..9352ad8 100644
--- a/src/argaze/DataStructures.py
+++ b/src/argaze/DataStructures.py
@@ -39,7 +39,7 @@ class TimeStampedBuffer(collections.OrderedDict):
self[ts] = value
def get_first(self):
-
+ """Easing access to first item"""
return list(self.items())[0]
def pop_first(self):
@@ -64,7 +64,7 @@ class TimeStampedBuffer(collections.OrderedDict):
return popep_ts, poped_value
def get_last(self):
-
+ """Easing access to last item"""
return list(self.items())[-1]
def pop_last(self):