Cleanup: format (with BraceWrapping::AfterControlStatement "MultiLine")

This commit is contained in:
Campbell Barton
2023-05-02 08:42:26 +10:00
parent 391f86bc38
commit 6859bb6e67
1314 changed files with 9714 additions and 5571 deletions

View File

@@ -168,7 +168,8 @@ static PyObject *Freestyle_blendRamp(PyObject * /*self*/, PyObject *args)
3,
obj1,
"argument 2 must be a 3D vector "
"(either a tuple/list of 3 elements or Vector)") == -1) {
"(either a tuple/list of 3 elements or Vector)") == -1)
{
return nullptr;
}
if (mathutils_array_parse(b,
@@ -176,7 +177,8 @@ static PyObject *Freestyle_blendRamp(PyObject * /*self*/, PyObject *args)
3,
obj2,
"argument 4 must be a 3D vector "
"(either a tuple/list of 3 elements or Vector)") == -1) {
"(either a tuple/list of 3 elements or Vector)") == -1)
{
return nullptr;
}
ramp_blend(type, a, fac, b);