Skip to content

Commit

Permalink
Use default PyTypeObject value
Browse files Browse the repository at this point in the history
  • Loading branch information
radarhere committed Feb 10, 2025
1 parent 144c040 commit d991b28
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/_avif.c
Original file line number Diff line number Diff line change
Expand Up @@ -875,7 +875,6 @@ static struct PyMethodDef _decoder_methods[] = {
static PyTypeObject AvifDecoder_Type = {
PyVarObject_HEAD_INIT(NULL, 0).tp_name = "AvifDecoder",
.tp_basicsize = sizeof(AvifDecoderObject),
.tp_itemsize = 0,
.tp_dealloc = (destructor)_decoder_dealloc,
.tp_flags = Py_TPFLAGS_DEFAULT,
.tp_methods = _decoder_methods,
Expand Down

0 comments on commit d991b28

Please sign in to comment.