Skip to content

Commit f34474e

Browse files
authored
Revert refcheck to True
1 parent 7a6e180 commit f34474e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lgdo/types/array.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def __len__(self) -> int:
100100

101101
def resize(self, new_size: int) -> None:
102102
new_shape = (new_size,) + self.nda.shape[1:]
103-
return self.nda.resize(new_shape, refcheck=False)
103+
return self.nda.resize(new_shape, refcheck=True)
104104

105105
def append(self, value: np.ndarray) -> None:
106106
self.resize(len(self) + 1)

0 commit comments

Comments
 (0)