Skip to content

Commit

Permalink
remove todos from docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
knikolaou committed Jun 8, 2024
1 parent 92c450f commit 6c20b57
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions papyrus/recorders/base_recorder.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 6c20b57

Please sign in to comment.