Skip to content

Commit

Permalink
Fix bug with test_cv_multiple_metrics_evaluated_correct by adding cop…
Browse files Browse the repository at this point in the history
…y method to OptimisedFeature
  • Loading branch information
aPovidlo committed Aug 15, 2024
1 parent e5db54d commit ebab7f2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions fedot/core/data/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -719,6 +719,9 @@ def __setitem__(self, key, value):
def __len__(self):
return self._shape[0] if self._columns else 0

def copy(self):
return self._columns.copy()

@property
def shape(self):
return self._shape
Expand Down

0 comments on commit ebab7f2

Please sign in to comment.