Skip to content

Commit 10dcdfa

Browse files
committedJun 5, 2021
Repair whitespace
1 parent 53c0586 commit 10dcdfa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎native/python/pyjp_method.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,8 @@ void PyJPMethod_initType(PyObject* module)
400400
unsigned long flags = PyFunction_Type.tp_flags;
401401
PyFunction_Type.tp_flags |= Py_TPFLAGS_BASETYPE;
402402
PyJPMethod_Type = (PyTypeObject*) PyType_FromSpecWithBases(&methodSpec, tuple.get());
403-
PyFunction_Type.tp_flags = flags; JP_PY_CHECK();
403+
PyFunction_Type.tp_flags = flags;
404+
JP_PY_CHECK();
404405

405406
PyModule_AddObject(module, "_JMethod", (PyObject*) PyJPMethod_Type);
406407
JP_PY_CHECK();

0 commit comments

Comments
 (0)
Please sign in to comment.