Skip to content

Commit

Permalink
fix: error in pykernel
Browse files Browse the repository at this point in the history
  • Loading branch information
ManasviGoyal committed Feb 28, 2024
1 parent 8a53267 commit 1b7cef1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kernel-specification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -556,14 +556,14 @@ kernels:
description: null
definition: |
def awkward_IndexedArray_local_preparenext(
tocarry, starts, parents, parentslength, nextparents. nextlen
tocarry, starts, parents, parentslength, nextparents, nextlen
):
for i in range(parentslength):
parent = parents[i];
if j < nextlen and parent == nextparents[j]:
tocarry[i] = j;
j += 1;
elif
else:
tocarry[i] = -1;
automatic-tests: false

Expand Down

0 comments on commit 1b7cef1

Please sign in to comment.