Skip to content

Commit 97cb9fd

Browse files
authored
Removed debug changes (#473)
1 parent 6c28802 commit 97cb9fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pydatastructs/linear_data_structures/_backend/cpp/arrays/OneDimensionalArray.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ static PyObject* OneDimensionalArray___new__(PyTypeObject* type, PyObject *args,
5858
} else {
5959
PyErr_SetString(PyExc_TypeError,
6060
"Expected type of size is int and "
61-
"expected type of data is list/tuple. 61");
61+
"expected type of data is list/tuple.");
6262
return NULL;
6363
}
6464
size_t len_data = PyObject_Length(data);
@@ -105,7 +105,7 @@ static PyObject* OneDimensionalArray___new__(PyTypeObject* type, PyObject *args,
105105
} else {
106106
PyErr_SetString(PyExc_TypeError,
107107
"Expected type of size is int and "
108-
"expected type of data is list/tuple. 108");
108+
"expected type of data is list/tuple.");
109109
return NULL;
110110
}
111111
}

0 commit comments

Comments
 (0)