Skip to content

Commit

Permalink
#240 todo related updates. Proceed with #269
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolay-r committed Feb 1, 2022
1 parent 18f735e commit b4936c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion arekit/common/data/views/samples.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def __init__(self, storage, row_ids_provider):
self.__row_ids_provider = row_ids_provider
self._storage = storage

# TODO. #240 This is just a wrapper over storage.
# TODO. #269 This is just a particular wrapper over storage.
def iter_rows(self, handle_rows):
assert(callable(handle_rows) or handle_rows is None)

Expand All @@ -25,6 +25,7 @@ def iter_rows(self, handle_rows):
else:
yield handle_rows(row)

# TODO. #269 This is just a particular wrapper over storage.
def iter_rows_linked_by_text_opinions(self):
undefined = -1

Expand Down
1 change: 0 additions & 1 deletion arekit/common/pipeline/item_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
from arekit.common.pipeline.item import BasePipelineItem


# TODO. #240. Item handle, iter, map move into base pipeline folder
class MapPipelineItem(BasePipelineItem):

def __init__(self, map_func=None):
Expand Down

0 comments on commit b4936c5

Please sign in to comment.