Skip to content

Commit

Permalink
resolved merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
ericmariasis committed Feb 1, 2020
1 parent 1542f59 commit 812920c
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions numpy/core/src/multiarray/descriptor.c
Original file line number Diff line number Diff line change
Expand Up @@ -242,13 +242,9 @@ static PyArray_Descr *
_convert_from_tuple(PyObject *obj, int align)
{
if (PyTuple_GET_SIZE(obj) != 2) {
<<<<<<< HEAD
PyErr_Format(PyExc_TypeError,
"Tuple must have size 2, but has size %d",
"Tuple must have size 2, but has size %zd",
PyTuple_GET_SIZE(obj));
=======
PyErr_Format(PyExc_TypeError, "Tuple must have size 2, but has size %zd", PyTuple_GET_SIZE(obj));
>>>>>>> 303ce30f051070bc73307296faf02bdf7eb00fc5
return NULL;
}
PyArray_Descr *type = _convert_from_any(PyTuple_GET_ITEM(obj, 0), align);
Expand Down

0 comments on commit 812920c

Please sign in to comment.