Simplified code

This commit is contained in:
Andrew Murray 2024-10-07 15:34:28 +11:00
parent 27c1bb2654
commit feeceb9ae6

View File

@ -62,11 +62,8 @@ apply(PyObject *self, PyObject *args) {
width = imgin->xsize;
height = imgin->ysize;
if (imgin->type != IMAGING_TYPE_UINT8 || imgin->bands != 1) {
PyErr_SetString(PyExc_RuntimeError, "Unsupported image type");
return NULL;
}
if (imgout->type != IMAGING_TYPE_UINT8 || imgout->bands != 1) {
if (imgin->type != IMAGING_TYPE_UINT8 || imgin->bands != 1 ||
imgout->type != IMAGING_TYPE_UINT8 || imgout->bands != 1) {
PyErr_SetString(PyExc_RuntimeError, "Unsupported image type");
return NULL;
}