Skip to content

Commit 67c04b5

Browse files
MarcCoteeffigies
andauthored
Update nibabel/streamlines/array_sequence.py
Co-authored-by: Chris Markiewicz <[email protected]>
1 parent 43eeda7 commit 67c04b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nibabel/streamlines/array_sequence.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ def _resize_data_to(self, n_rows, build_cache):
281281
self._data.resize(new_shape)
282282
except ValueError:
283283
self._data = self._data.copy()
284-
self._data.resize(new_shape)
284+
self._data.resize(new_shape, refcheck=False)
285285

286286
def shrink_data(self):
287287
self._data.resize((self._get_next_offset(),) + self.common_shape,

0 commit comments

Comments
 (0)