Skip to content

Commit

Permalink
test9
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Stoops committed Nov 6, 2024
1 parent ee71328 commit 3a5d0a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/transforms.c
Original file line number Diff line number Diff line change
Expand Up @@ -1023,7 +1023,7 @@ UTM2geodeticWrapper(PyObject* self, PyObject* args)
// char ZoneLetter;

// checks
if (!PyArg_ParseTuple(args, "O!dd", &PyArray_Type, &mmUTM, &ZoneNumberPy, &a, &b)) //&ZoneNumberPy,
if (!PyArg_ParseTuple(args, "O!Odd", &PyArray_Type, &mmUTM, &ZoneNumberPy, &a, &b)) //&ZoneNumberPy,
return NULL;
if (!PyLong_Check(ZoneNumberPy)) {
PyErr_SetString(PyExc_TypeError, "Zone number must be an integer");
Expand Down

0 comments on commit 3a5d0a5

Please sign in to comment.