Skip to content

Commit ca6fb69

Browse files
test
1 parent 3277e44 commit ca6fb69

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

CPythonTensor/module.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,8 @@ static PyObject* Tensor_new(PyTypeObject* type, PyObject* args)
3737
{
3838
PyTensorObject* self;
3939
self = type->tp_alloc(type, 0);
40-
if (self != NULL) {
40+
if (self != NULL)
4141
self->t = 0;
42-
}
4342
return self;
4443
}
4544

0 commit comments

Comments
 (0)