Removed redundant argument parsing

This commit is contained in:
Andrew Murray 2025-02-05 18:42:35 +11:00
parent 2810d7c6ba
commit a7d7a1080e

View File

@ -1013,10 +1013,6 @@ _convert_transparent(ImagingObject *self, PyObject *args) {
static PyObject *
_copy(ImagingObject *self, PyObject *args) {
if (!PyArg_ParseTuple(args, "")) {
return NULL;
}
return PyImagingNew(ImagingCopy(self->image));
}