Skip to content

Commit 74b478d

Browse files
committed
code cleanup
1 parent f355c90 commit 74b478d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/_arraykit.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3589,7 +3589,6 @@ typedef struct A2DTupleObject {
35893589
npy_intp num_rows;
35903590
npy_intp num_cols;
35913591
Py_ssize_t pos; // current index state, mutated in-place
3592-
35933592
} A2DTupleObject;
35943593

35953594
static PyObject *
@@ -3616,7 +3615,6 @@ A2DTuple_dealloc(A2DTupleObject *self) {
36163615

36173616
static PyObject*
36183617
A2DTuple_iter(A2DTupleObject *self) {
3619-
// NOTE: why do we not need to incref components sof self?
36203618
Py_INCREF(self);
36213619
return (PyObject*)self;
36223620
}

0 commit comments

Comments
 (0)