Skip to content

Commit c20bd11

Browse files
authored
fix: index with int in unionarray.py (#3419)
* fix index with int in unionarray.py * Update src/awkward/contents/unionarray.py
1 parent 58c63fb commit c20bd11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/awkward/contents/unionarray.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1604,7 +1604,7 @@ def _remove_structure(
16041604
# backends with concrete data
16051605
for i in range(self._tags.length):
16061606
content = (
1607-
self._contents[self._tags.data[i]]
1607+
self._contents[self._tags[i]]
16081608
._carry(ak.index.Index(self._index.data[i]), False)
16091609
._remove_structure(backend, options)
16101610
)

0 commit comments

Comments
 (0)