mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-05-13 16:37:27 +00:00
Fix #9951
This commit is contained in:
parent
04a9495221
commit
eaec66fdc6
1 changed files with 1 additions and 1 deletions
|
|
@ -1385,7 +1385,7 @@ PyTypeObject Color_Type = {
|
|||
PyVarObject_HEAD_INIT(NULL, 0)
|
||||
.tp_name = "kitty.fast_data_types.Color",
|
||||
.tp_basicsize = sizeof(Color),
|
||||
.tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_VECTORCALL,
|
||||
.tp_flags = Py_TPFLAGS_DEFAULT,
|
||||
.tp_doc = "Color",
|
||||
.tp_new = new_color,
|
||||
.tp_vectorcall = color_vectorcall,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue