Cleanup: format (with BraceWrapping::AfterControlStatement "MultiLine")
This commit is contained in:
@@ -180,7 +180,8 @@ static PyObject *Stroke_insert_vertex(BPy_Stroke *self, PyObject *args, PyObject
|
||||
&StrokeVertex_Type,
|
||||
&py_sv,
|
||||
&StrokeVertexIterator_Type,
|
||||
&py_sv_it)) {
|
||||
&py_sv_it))
|
||||
{
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
@@ -207,8 +208,8 @@ static PyObject *Stroke_remove_vertex(BPy_Stroke *self, PyObject *args, PyObject
|
||||
static const char *kwlist[] = {"vertex", nullptr};
|
||||
PyObject *py_sv = nullptr;
|
||||
|
||||
if (!PyArg_ParseTupleAndKeywords(
|
||||
args, kwds, "O!", (char **)kwlist, &StrokeVertex_Type, &py_sv)) {
|
||||
if (!PyArg_ParseTupleAndKeywords(args, kwds, "O!", (char **)kwlist, &StrokeVertex_Type, &py_sv))
|
||||
{
|
||||
return nullptr;
|
||||
}
|
||||
if (((BPy_StrokeVertex *)py_sv)->sv) {
|
||||
|
||||
Reference in New Issue
Block a user