Skip to content

Commit

Permalink
#959 Fixed label limit points with correct append
Browse files Browse the repository at this point in the history
This was a simpler fix than I previously thought.
The data collector, inside a for loop,  was appending a fixed idx instead of the variable idx_limit_point.
  • Loading branch information
manuelgitgomes committed May 15, 2024
1 parent d0b105d commit 3e06363
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ def saveCollection(self):
labels_dict['idxs'].append(idx)

for idx_limit_point in pattern_label.idxs_limit_points:
labels_dict['idxs_limit_points'].append(idx)
labels_dict['idxs_limit_points'].append(idx_limit_point)

all_sensor_labels_dict[pattern_key][sensor_key] = labels_dict

Expand Down

0 comments on commit 3e06363

Please sign in to comment.