From 6c20b57ba761786b432fe061683a2d989de522ae Mon Sep 17 00:00:00 2001 From: knikolaou Date: Sat, 8 Jun 2024 22:41:31 +0200 Subject: [PATCH] remove todos from docstrings --- papyrus/recorders/base_recorder.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/papyrus/recorders/base_recorder.py b/papyrus/recorders/base_recorder.py index d69091e..04c4088 100644 --- a/papyrus/recorders/base_recorder.py +++ b/papyrus/recorders/base_recorder.py @@ -135,8 +135,6 @@ def load(self): """ Load the data from the database using np.load. - TODO: Change this method to use another type of storage. - Returns ------- data : dict @@ -175,8 +173,6 @@ def store(self, ignore_chunk_size=True): Store the results of the measurements in the database. This method loads and writes the data to the database in chunks. - - TODO: Change this method to use another type of storage. """ if self._counter % self.chunk_size == 0 or ignore_chunk_size: # Write the data back to the database @@ -187,9 +183,7 @@ def store(self, ignore_chunk_size=True): def gather(self): """ Gather the results from the temporary storage and the database. - - TODO: Change this method to use another type of storage. - + Returns ------- data : dict