Skip to content

Commit af4d576

Browse files
committed
fixup! FEAT: implemented dta adapter using Pandas
1 parent 116ad22 commit af4d576

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

larray_editor/arrayadapter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3833,7 +3833,7 @@ def get_values(self, h_start, v_start, h_stop, v_stop):
38333833
chunk = reader.read(v_stop - v_start, columns=columns)
38343834

38353835
chunk_columns = [chunk.iloc[:, i].values
3836-
for i in range(h_start, h_stop)]
3836+
for i in range(h_stop - h_start)]
38373837
try:
38383838
return np.stack(chunk_columns, axis=1)
38393839
except np.exceptions.DTypePromotionError:

0 commit comments

Comments
 (0)