Skip to content

Commit

Permalink
#567 done
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolay-r committed Dec 7, 2024
1 parent bb41a4a commit 1238de2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions arekit/common/data/storages/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ def _iter_rows(self):
def _get_rows_count(self):
raise NotImplemented()

def find_by_value(self, column_name, value):
raise NotImplemented()

def get_row(self, row_index):
raise NotImplemented()

Expand Down
3 changes: 0 additions & 3 deletions arekit/contrib/utils/data/storages/pandas_based.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,6 @@ def fill(self, iter_rows_func, columns_provider, row_handler=None, rows_count=No
def get_row(self, row_index):
return self._df.iloc[row_index]

def find_by_value(self, column_name, value):
return self.__filter(column_name=column_name, value=value)

def init_empty(self, columns_provider):
cols_with_types = columns_provider.get_columns_list_with_types()
self._df = self.__create_empty(cols_with_types)
Expand Down

0 comments on commit 1238de2

Please sign in to comment.