Skip to content

Commit 90269de

Browse files
authored
Update channelsaggregationrecording.py
1 parent b96205e commit 90269de

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/spikeinterface/core/channelsaggregationrecording.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ def __init__(self, recording_list_or_dict=None, renamed_channel_ids=None, record
110110
if all(k == planar_contour_keys[0] for k in planar_contour_keys): # we add the 'planar_contour' annotations only if there is a unique one in the recording_list

111111
planar_contour_key = planar_contour_keys[0]

112112
collect_planar_contours = []

113-
for rec in recording_list:

114-
collect_planar_contours.append(rec.get_annotation(planar_contour_key))

113+
for rec in recording_list:

114+
collect_planar_contours.append(rec.get_annotation(planar_contour_key))

115115
if all(np.array_equal(arr, collect_planar_contours[0]) for arr in collect_planar_contours):

116116
self.set_annotation(planar_contour_key, collect_planar_contours[0])
117117

0 commit comments

Comments
 (0)