Skip to content

Commit 3a4e0d2

Browse files
committed
Remove trailing separator in static initalizer
1 parent ddbc8d2 commit 3a4e0d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python.test/src/tests/cpyext/test_weakref.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
if (!PyArg_ParseTuple(args, "O", &bases))
5353
return NULL;
5454
PyType_Slot slots[] = {
55-
{ 0 },
55+
{ 0 }
5656
};
5757
PyType_Spec spec = { "DynamicType", sizeof(PyObject), 0, Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, slots };
5858
PyObject* result = PyType_FromSpecWithBases(&spec, bases);

0 commit comments

Comments
 (0)