Deleted a forgotten print statement
This commit is contained in:
@ -240,7 +240,6 @@ cdef class OBIView :
|
|||||||
line_selection_p = <index_t*> malloc((len(line_selection) + 1) * sizeof(index_t))
|
line_selection_p = <index_t*> malloc((len(line_selection) + 1) * sizeof(index_t))
|
||||||
for i in range(len(line_selection)) :
|
for i in range(len(line_selection)) :
|
||||||
line_selection_p[i] = line_selection[i] # TODO type problem?
|
line_selection_p[i] = line_selection[i] # TODO type problem?
|
||||||
print(line_selection_p[i], line_selection[i])
|
|
||||||
line_selection_p[len(line_selection)] = -1
|
line_selection_p[len(line_selection)] = -1
|
||||||
else :
|
else :
|
||||||
line_selection_p = NULL
|
line_selection_p = NULL
|
||||||
|
Reference in New Issue
Block a user