Skip to content

Commit 7b9dccf

Browse files
authored
Update convert.py
1 parent 2f4b538 commit 7b9dccf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sparse/compressed/convert.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def convert_to_flat(inds, shape, axisptr):
2020

2121

2222
@numba.jit(nopython=True, nogil=True)
23-
def compute_flat(increments, cols, operations): # pragma: no cover
23+
def compute_flat(increments, cols, operations): # pragma: no cover
2424
start = 0
2525
end = increments[-1].shape[0]
2626
positions = np.zeros(len(increments)-1, dtype=np.intp)
@@ -54,7 +54,7 @@ def transform_shape(shape):
5454

5555

5656
@numba.jit(nopython=True, nogil=True)
57-
def uncompress_dimension(indptr): # pragma: no cover
57+
def uncompress_dimension(indptr): # pragma: no cover
5858
"""converts an index pointer array into an array of coordinates"""
5959
uncompressed = np.empty(indptr[-1], dtype=np.intp)
6060
for i in range(len(indptr) - 1):

0 commit comments

Comments
 (0)