Skip to content

Commit

Permalink
Unwrap line
Browse files Browse the repository at this point in the history
  • Loading branch information
jakirkham committed Nov 20, 2018
1 parent 7a66abf commit aebf631
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/cybuffer.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,7 @@ cdef list pointer_to_list(int n, Py_ssize_t* shape, Py_ssize_t* strides,
shape += 1
strides += 1
for i in range(l):
r_i = pointer_to_list(
n, shape, strides,
fmt, itemsize, d
)
r_i = pointer_to_list(n, shape, strides, fmt, itemsize, d)
PyList_SET_ITEM_INC(r, i, r_i)
d += s
else:
Expand Down

0 comments on commit aebf631

Please sign in to comment.